文件操作 - isUndefined.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/lodash/isUndefined.js
编辑文件内容
/** * Checks if `value` is `undefined`. * * @static * @since 0.1.0 * @memberOf _ * @category Lang * @param {*} value The value to check. * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`. * @example * * _.isUndefined(void 0); * // => true * * _.isUndefined(null); * // => false */ function isUndefined(value) { return value === undefined; } module.exports = isUndefined;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件