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.136.23.7
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
chain.js
1.09
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; var setPrototypeOf = require("es5-ext/object/set-prototype-of") , d = require("d") , Iterator = require("../") , validIterable = require("../valid-iterable") , push = Array.prototype.push , defineProperties = Object.defineProperties , IteratorChain; IteratorChain = function (iterators) { defineProperties(this, { __iterators__: d("", iterators), __current__: d("w", iterators.shift()) }); }; if (setPrototypeOf) setPrototypeOf(IteratorChain, Iterator); IteratorChain.prototype = Object.create(Iterator.prototype, { constructor: d(IteratorChain), next: d(function () { var result; if (!this.__current__) return { done: true, value: undefined }; result = this.__current__.next(); while (result.done) { this.__current__ = this.__iterators__.shift(); if (!this.__current__) return { done: true, value: undefined }; result = this.__current__.next(); } return result; }) }); module.exports = function () { var iterators = [this]; push.apply(iterators, arguments); iterators.forEach(validIterable); return new IteratorChain(iterators); };