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.119.110.206
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'; var implementation = require('./implementation'); var lacksProperEnumerationOrder = function () { if (!Object.assign) { return false; } /* * v8, specifically in node 4.x, has a bug with incorrect property enumeration order * note: this does not detect the bug unless there's 20 characters */ var str = 'abcdefghijklmnopqrst'; var letters = str.split(''); var map = {}; for (var i = 0; i < letters.length; ++i) { map[letters[i]] = letters[i]; } var obj = Object.assign({}, map); var actual = ''; for (var k in obj) { actual += k; } return str !== actual; }; var assignHasPendingExceptions = function () { if (!Object.assign || !Object.preventExtensions) { return false; } /* * Firefox 37 still has "pending exception" logic in its Object.assign implementation, * which is 72% slower than our shim, and Firefox 40's native implementation. */ var thrower = Object.preventExtensions({ 1: 2 }); try { Object.assign(thrower, 'xy'); } catch (e) { return thrower[1] === 'y'; } return false; }; module.exports = function getPolyfill() { if (!Object.assign) { return implementation; } if (lacksProperEnumerationOrder()) { return implementation; } if (assignHasPendingExceptions()) { return implementation; } return Object.assign; };