Urara-Blog/node_modules/.pnpm-store/v3/files/44/d5d8424e19ac7c8a54b21219d5e0d902575deecafeac29841c7580b9794608eba3dd10e3716a664261f31a37d71bde3dce8dae7fcce204e26657a7da4a9bc5
2022-08-14 01:14:53 +08:00

14 lines
509 B
Text

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()
}