文件操作 - warn-deprecated.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/atom/resources/app/apm/node_modules/npm/lib/utils/warn-deprecated.js
编辑文件内容
module.exports = warnDeprecated var log = require('npmlog') var deprecations = {} function warnDeprecated (type) { return function warn (messages, instance) { if (!instance) { if (!deprecations[type]) { deprecations[type] = {} messages.forEach(function (m) { log.warn(type, m) }) } } else { if (!deprecations[type]) deprecations[type] = {} if (!deprecations[type][instance]) { deprecations[type][instance] = true messages.forEach(function (m) { log.warn(type, m) }) } } } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件