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.140.201.179
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 /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
implement.js
85
B
-rw-rw-r--
2022-08-30 11:49
index.js
114
B
-rw-rw-r--
2022-08-30 11:49
is-implemented.js
335
B
-rw-rw-r--
2022-08-30 11:49
is-native-implemented.js
78
B
-rw-rw-r--
2022-08-30 11:49
is-weak-map.js
406
B
-rw-rw-r--
2022-08-30 11:49
polyfill.js
725
B
-rw-rw-r--
2022-08-30 11:49
valid-weak-map.js
626
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; var WeakMapPoly = require("../polyfill"); module.exports = function (t, a) { var map; a.throws(function () { t(undefined); }, TypeError, "Undefined"); a.throws(function () { t(null); }, TypeError, "Null"); a.throws(function () { t(true); }, TypeError, "Primitive"); a.throws(function () { t("raz"); }, TypeError, "String"); a.throws(function () { t({}); }, TypeError, "Object"); a.throws(function () { t([]); }, TypeError, "Array"); if (typeof WeakMap !== "undefined") { map = new WeakMap(); a(t(map), map, "Native"); } map = new WeakMapPoly(); a(t(map), map, "Polyfill"); };