文件操作 - helpers.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/nodejs/source-list-map/lib/helpers.js
编辑文件内容
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; exports.getNumberOfLines = function getNumberOfLines(str) { let nr = -1; let idx = -1; do { nr++ idx = str.indexOf("\n", idx + 1); } while(idx >= 0); return nr; }; exports.getUnfinishedLine = function getUnfinishedLine(str) { const idx = str.lastIndexOf("\n"); if(idx === -1) return str.length; else return str.length - idx - 1; };
修改文件时间
将文件时间修改为当前时间的前一年
删除文件