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.188.152.124
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 /
es5-ext /
array /
# /
concat /
Delete
Unzip
Name
Size
Permission
Date
Action
implement.js
200
B
-rw-rw-r--
2022-08-30 11:49
index.js
108
B
-rw-rw-r--
2022-08-30 11:49
is-implemented.js
162
B
-rw-rw-r--
2022-08-30 11:49
shim.js
1.25
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; var isPlainArray = require("../../is-plain-array") , toPosInt = require("../../../number/to-pos-integer") , isObject = require("../../../object/is-object") , isConcatSpreadable = require("es6-symbol").isConcatSpreadable , isArray = Array.isArray , concat = Array.prototype.concat , forEach = Array.prototype.forEach , isSpreadable; isSpreadable = function (value) { if (!value) return false; if (!isObject(value)) return false; if (value[isConcatSpreadable] !== undefined) { return Boolean(value[isConcatSpreadable]); } return isArray(value); }; // eslint-disable-next-line no-unused-vars module.exports = function (item /*, …items*/) { var result; if (!this || !isArray(this) || isPlainArray(this)) { return concat.apply(this, arguments); } result = new this.constructor(); if (isSpreadable(this)) { forEach.call(this, function (val, i) { result[i] = val; }); } else { result[0] = this; } forEach.call(arguments, function (arg) { var base; if (isSpreadable(arg)) { base = result.length; result.length += toPosInt(arg.length); forEach.call(arg, function (val, i) { result[base + i] = val; }); return; } result.push(arg); }); return result; };