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 /
object.assign /
Delete
Unzip
Name
Size
Permission
Date
Action
.github
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
dist
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
test
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
.editorconfig
286
B
-rw-rw-r--
2022-08-30 11:49
.eslintignore
6
B
-rw-rw-r--
2022-08-30 11:49
.eslintrc
590
B
-rw-rw-r--
2022-08-30 11:49
.nycrc
232
B
-rw-rw-r--
2022-08-30 11:49
CHANGELOG.md
7.63
KB
-rw-rw-r--
2022-08-30 11:49
LICENSE
1.05
KB
-rw-rw-r--
2022-08-30 11:49
README.md
3.56
KB
-rw-rw-r--
2022-08-30 11:49
auto.js
36
B
-rw-rw-r--
2022-08-30 11:49
hasSymbols.js
1.58
KB
-rw-rw-r--
2022-08-30 11:49
implementation.js
1.3
KB
-rw-rw-r--
2022-08-30 11:49
index.js
532
B
-rw-rw-r--
2022-08-30 11:49
package.json
1.93
KB
-rw-rw-r--
2022-08-30 11:49
polyfill.js
1.27
KB
-rw-rw-r--
2022-08-30 11:49
shim.js
305
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; // modified from https://github.com/es-shims/es6-shim var keys = require('object-keys'); var canBeObject = function (obj) { return typeof obj !== 'undefined' && obj !== null; }; var hasSymbols = require('has-symbols/shams')(); var callBound = require('call-bind/callBound'); var toObject = Object; var $push = callBound('Array.prototype.push'); var $propIsEnumerable = callBound('Object.prototype.propertyIsEnumerable'); var originalGetSymbols = hasSymbols ? Object.getOwnPropertySymbols : null; // eslint-disable-next-line no-unused-vars module.exports = function assign(target, source1) { if (!canBeObject(target)) { throw new TypeError('target must be an object'); } var objTarget = toObject(target); var s, source, i, props, syms, value, key; for (s = 1; s < arguments.length; ++s) { source = toObject(arguments[s]); props = keys(source); var getSymbols = hasSymbols && (Object.getOwnPropertySymbols || originalGetSymbols); if (getSymbols) { syms = getSymbols(source); for (i = 0; i < syms.length; ++i) { key = syms[i]; if ($propIsEnumerable(source, key)) { $push(props, key); } } } for (i = 0; i < props.length; ++i) { key = props[i]; value = source[key]; if ($propIsEnumerable(source, key)) { objTarget[key] = value; } } } return objTarget; };