Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
normalize-package-data /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
extract_description.js
549
B
-rw-r--r--
2022-09-01 13:54
fixer.js
12.41
KB
-rw-r--r--
2022-09-01 13:54
make_warning.js
711
B
-rw-r--r--
2022-09-01 13:54
normalize.js
1.35
KB
-rw-r--r--
2022-09-01 13:54
safe_format.js
262
B
-rw-r--r--
2022-09-01 13:54
typos.json
747
B
-rw-r--r--
2022-09-01 13:54
warning_messages.json
1.76
KB
-rw-r--r--
2022-09-01 13:54
Save
Rename
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() }