文件操作 - indexed-object.js
返回文件管理
返回主菜单
删除本文件
文件: /node_modules/core-js/internals/indexed-object.js
编辑文件内容
var fails = require('../internals/fails'); var classof = require('../internals/classof-raw'); var split = ''.split; // fallback for non-array-like ES3 and non-enumerable old V8 strings module.exports = fails(function () { // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 // eslint-disable-next-line no-prototype-builtins return !Object('z').propertyIsEnumerable(0); }) ? function (it) { return classof(it) == 'String' ? split.call(it, '') : Object(it); } : Object;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件