mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-06-03 19:21:11 +00:00
.
This commit is contained in:
parent
a004f0ae58
commit
fc725ba36b
7280 changed files with 19 additions and 1796407 deletions
node_modules/normalize-package-data/lib
14
node_modules/normalize-package-data/lib/extract_description.js
generated
vendored
14
node_modules/normalize-package-data/lib/extract_description.js
generated
vendored
|
@ -1,14 +0,0 @@
|
|||
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()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue