Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.128.223
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
de-indent /
Delete
Unzip
Name
Size
Permission
Date
Action
.npmignore
23
B
-rw-r--r--
2016-01-04 19:37
index.js
896
B
-rw-r--r--
2016-01-05 17:02
package.json
1.22
KB
-rw-r--r--
2021-02-04 21:24
test.js
736
B
-rw-r--r--
2016-01-05 17:01
Save
Rename
var splitRE = /\r?\n/g var emptyRE = /^\s*$/ var needFixRE = /^(\r?\n)*[\t\s]/ module.exports = function deindent (str) { if (!needFixRE.test(str)) { return str } var lines = str.split(splitRE) var min = Infinity var type, cur, c for (var i = 0; i < lines.length; i++) { var line = lines[i] if (!emptyRE.test(line)) { if (!type) { c = line.charAt(0) if (c === ' ' || c === '\t') { type = c cur = count(line, type) if (cur < min) { min = cur } } else { return str } } else { cur = count(line, type) if (cur < min) { min = cur } } } } return lines.map(function (line) { return line.slice(min) }).join('\n') } function count (line, type) { var i = 0 while (line.charAt(i) === type) { i++ } return i }