X7ROOT File Manager
Current Path:
/usr/lib/node_modules/npm/node_modules/normalize-package-data/lib
usr
/
lib
/
node_modules
/
npm
/
node_modules
/
normalize-package-data
/
lib
/
📁
..
📄
extract_description.js
(509 B)
📄
fixer.js
(11.53 KB)
📄
make_warning.js
(710 B)
📄
normalize.js
(1.31 KB)
📄
safe_format.js
(246 B)
📄
typos.json
(747 B)
📄
warning_messages.json
(1.76 KB)
Editing: 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') for (var s = 0; d[s] && d[s].trim().match(/^(#|$)/); s ++); var l = d.length for (var e = s + 1; e < l && d[e].trim(); e ++); return d.slice(s, e).join(' ').trim() }
Upload File
Create Folder