文件操作 - extract_description.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js
编辑文件内容
module.exports = extractDescription // Extracts description from contents of a readme file in markdown format function extractDescription (d) { if (!d) { return } if (d === 'ERROR: No README data found!') { return } // the first block of text before the first heading // that isn't the first line heading d = d.trim().split('\n') let s = 0 while (d[s] && d[s].trim().match(/^(#|$)/)) { s++ } const l = d.length let e = s + 1 while (e < l && d[e].trim()) { e++ } return d.slice(s, e).join(' ').trim() }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件