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.135.246.88
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
es6-iterator /
Delete
Unzip
Name
Size
Permission
Date
Action
#
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.editorconfig
272
B
-rw-r--r--
2017-05-08 07:50
.npmignore
140
B
-rw-r--r--
2017-10-17 11:02
CHANGELOG.md
978
B
-rw-r--r--
2017-10-17 11:02
CHANGES
1.23
KB
-rw-r--r--
2017-10-17 10:59
LICENSE
1.08
KB
-rw-r--r--
2017-10-17 10:20
README.md
4.17
KB
-rw-r--r--
2015-06-25 13:26
appveyor.yml
577
B
-rw-r--r--
2017-10-17 10:42
array.js
1.17
KB
-rw-r--r--
2017-10-17 10:56
for-of.js
1.25
KB
-rw-r--r--
2017-10-17 10:31
get.js
581
B
-rw-r--r--
2017-10-17 10:23
index.js
2.89
KB
-rw-r--r--
2017-10-17 10:56
is-iterable.js
507
B
-rw-r--r--
2017-10-17 10:38
package.json
1.79
KB
-rw-r--r--
2021-02-04 21:24
string.js
1.35
KB
-rw-r--r--
2017-10-17 11:01
valid-iterable.js
187
B
-rw-r--r--
2017-10-17 10:23
Save
Rename
"use strict"; var isArguments = require("es5-ext/function/is-arguments") , callable = require("es5-ext/object/valid-callable") , isString = require("es5-ext/string/is-string") , get = require("./get"); var isArray = Array.isArray, call = Function.prototype.call, some = Array.prototype.some; module.exports = function (iterable, cb /*, thisArg*/) { var mode, thisArg = arguments[2], result, doBreak, broken, i, length, char, code; if (isArray(iterable) || isArguments(iterable)) mode = "array"; else if (isString(iterable)) mode = "string"; else iterable = get(iterable); callable(cb); doBreak = function () { broken = true; }; if (mode === "array") { some.call(iterable, function (value) { call.call(cb, thisArg, value, doBreak); return broken; }); return; } if (mode === "string") { length = iterable.length; for (i = 0; i < length; ++i) { char = iterable[i]; if (i + 1 < length) { code = char.charCodeAt(0); if (code >= 0xd800 && code <= 0xdbff) char += iterable[++i]; } call.call(cb, thisArg, char, doBreak); if (broken) break; } return; } result = iterable.next(); while (!result.done) { call.call(cb, thisArg, result.value, doBreak); if (broken) return; result = iterable.next(); } };