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.138.141.138
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-symbol /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
implement.js
83
B
-rw-rw-r--
2022-08-30 11:49
index.js
271
B
-rw-rw-r--
2022-08-30 11:49
is-implemented.js
317
B
-rw-rw-r--
2022-08-30 11:49
is-native-implemented.js
77
B
-rw-rw-r--
2022-08-30 11:49
is-symbol.js
407
B
-rw-rw-r--
2022-08-30 11:49
polyfill.js
806
B
-rw-rw-r--
2022-08-30 11:49
validate-symbol.js
629
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; var d = require("d") , isSymbol = require("../is-symbol") , defineProperty = Object.defineProperty; module.exports = function (t, a) { var symbol = t("test"), obj = {}; defineProperty(obj, symbol, d("foo")); a(obj.test, undefined, "Name"); a(obj[symbol], "foo", "Get"); a(obj instanceof t, false); a(isSymbol(symbol), true, "Symbol"); a(isSymbol(t.iterator), true, "iterator"); a(isSymbol(t.toStringTag), true, "toStringTag"); obj = {}; obj[symbol] = "foo"; if (typeof symbol !== "symbol") { a.deep(Object.getOwnPropertyDescriptor(obj, symbol), { configurable: true, enumerable: false, value: "foo", writable: true }); } symbol = t.for("marko"); a(isSymbol(symbol), true); a(t.for("marko"), symbol); a(t.keyFor(symbol), "marko"); };