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.217.230.80
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 /
Delete
Unzip
Name
Size
Permission
Date
Action
#
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
test
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
.editorconfig
272
B
-rw-rw-r--
2022-08-30 11:49
.npmignore
140
B
-rw-rw-r--
2022-08-30 11:49
CHANGELOG.md
978
B
-rw-rw-r--
2022-08-30 11:49
CHANGES
1.23
KB
-rw-rw-r--
2022-08-30 11:49
LICENSE
1.08
KB
-rw-rw-r--
2022-08-30 11:49
README.md
4.17
KB
-rw-rw-r--
2022-08-30 11:49
appveyor.yml
577
B
-rw-rw-r--
2022-08-30 11:49
array.js
1.17
KB
-rw-rw-r--
2022-08-30 11:49
for-of.js
1.25
KB
-rw-rw-r--
2022-08-30 11:49
get.js
581
B
-rw-rw-r--
2022-08-30 11:49
index.js
2.89
KB
-rw-rw-r--
2022-08-30 11:49
is-iterable.js
507
B
-rw-rw-r--
2022-08-30 11:49
package.json
889
B
-rw-rw-r--
2022-08-30 11:49
string.js
1.35
KB
-rw-rw-r--
2022-08-30 11:49
valid-iterable.js
187
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
// Thanks @mathiasbynens // http://mathiasbynens.be/notes/javascript-unicode#iterating-over-symbols "use strict"; var setPrototypeOf = require("es5-ext/object/set-prototype-of") , d = require("d") , Symbol = require("es6-symbol") , Iterator = require("./"); var defineProperty = Object.defineProperty, StringIterator; StringIterator = module.exports = function (str) { if (!(this instanceof StringIterator)) throw new TypeError("Constructor requires 'new'"); str = String(str); Iterator.call(this, str); defineProperty(this, "__length__", d("", str.length)); }; if (setPrototypeOf) setPrototypeOf(StringIterator, Iterator); // Internal %ArrayIteratorPrototype% doesn't expose its constructor delete StringIterator.prototype.constructor; StringIterator.prototype = Object.create(Iterator.prototype, { _next: d(function () { if (!this.__list__) return undefined; if (this.__nextIndex__ < this.__length__) return this.__nextIndex__++; this._unBind(); return undefined; }), _resolve: d(function (i) { var char = this.__list__[i], code; if (this.__nextIndex__ === this.__length__) return char; code = char.charCodeAt(0); if (code >= 0xd800 && code <= 0xdbff) return char + this.__list__[this.__nextIndex__++]; return char; }) }); defineProperty(StringIterator.prototype, Symbol.toStringTag, d("c", "String Iterator"));