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.135.246.88
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-weak-map /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
.editorconfig
271
B
-rw-rw-r--
2022-08-30 11:49
CHANGELOG.md
279
B
-rw-rw-r--
2022-08-30 11:49
CHANGES
1.35
KB
-rw-rw-r--
2022-08-30 11:49
LICENSE
773
B
-rw-rw-r--
2022-08-30 11:49
README.md
2.34
KB
-rw-rw-r--
2022-08-30 11:49
implement.js
222
B
-rw-rw-r--
2022-08-30 11:49
index.js
97
B
-rw-rw-r--
2022-08-30 11:49
is-implemented.js
621
B
-rw-rw-r--
2022-08-30 11:49
is-native-implemented.js
273
B
-rw-rw-r--
2022-08-30 11:49
is-weak-map.js
403
B
-rw-rw-r--
2022-08-30 11:49
package.json
899
B
-rw-rw-r--
2022-08-30 11:49
polyfill.js
2.23
KB
-rw-rw-r--
2022-08-30 11:49
valid-weak-map.js
186
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; module.exports = function () { var weakMap, obj; if (typeof WeakMap !== "function") return false; try { // WebKit doesn't support arguments and crashes weakMap = new WeakMap([[obj = {}, "one"], [{}, "two"], [{}, "three"]]); } catch (e) { return false; } if (String(weakMap) !== "[object WeakMap]") return false; if (typeof weakMap.set !== "function") return false; if (weakMap.set({}, 1) !== weakMap) return false; if (typeof weakMap.delete !== "function") return false; if (typeof weakMap.has !== "function") return false; if (weakMap.get(obj) !== "one") return false; return true; };