文件操作 - over.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/lodash/over.js
编辑文件内容
var arrayMap = require('./_arrayMap'), createOver = require('./_createOver'); /** * Creates a function that invokes `iteratees` with the arguments it receives * and returns their results. * * @static * @memberOf _ * @since 4.0.0 * @category Util * @param {...(Function|Function[])} [iteratees=[_.identity]] * The iteratees to invoke. * @returns {Function} Returns the new function. * @example * * var func = _.over([Math.max, Math.min]); * * func(1, 2, 3, 4); * // => [4, 1] */ var over = createOver(arrayMap); module.exports = over;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件