文件操作 - object-to-string.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/nodejs/core-js/internals/object-to-string.js
编辑文件内容
'use strict'; var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support'); var classof = require('../internals/classof'); // `Object.prototype.toString` method implementation // https://tc39.es/ecma262/#sec-object.prototype.tostring module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() { return '[object ' + classof(this) + ']'; };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件