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 iteratorSymbol = require("es6-symbol").iterator , Iterator = require("../"); module.exports = function (t, a) { var iterator; a(t(), false, "Undefined"); a(t(123), false, "Number"); a(t({}), false, "Plain object"); a(t({ length: 0 }), false, "Array-like"); iterator = {}; iterator[iteratorSymbol] = function () { return new Iterator([]); }; a(t(iterator), true, "Iterator"); a(t([]), true, "Array"); a(t("foo"), true, "String"); a(t(""), true, "Empty string"); a(t(function () { return arguments; }()), true, "Arguments"); };