Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
type /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
is-to-string-tag-supported.js
104
B
-rw-r--r--
2022-04-21 14:30
resolve-exception.js
782
B
-rw-r--r--
2022-04-21 14:30
safe-to-string.js
176
B
-rw-r--r--
2022-04-21 14:30
to-short-string.js
686
B
-rw-r--r--
2022-04-21 14:30
Save
Rename
"use strict"; var safeToString = require("./safe-to-string"); var reNewLine = /[\n\r\u2028\u2029]/g; module.exports = function (value) { var string = safeToString(value); if (string === null) return "<Non-coercible to string value>"; // Trim if too long if (string.length > 100) string = string.slice(0, 99) + "…"; // Replace eventual new lines string = string.replace(reNewLine, function (char) { switch (char) { case "\n": return "\\n"; case "\r": return "\\r"; case "\u2028": return "\\u2028"; case "\u2029": return "\\u2029"; /* istanbul ignore next */ default: throw new Error("Unexpected character"); } }); return string; };