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.221.21.111
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
es6-symbol /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
implement.js
83
B
-rw-r--r--
2015-06-25 13:26
index.js
251
B
-rw-r--r--
2015-06-25 13:26
is-implemented.js
316
B
-rw-r--r--
2016-05-17 12:42
is-native-implemented.js
77
B
-rw-r--r--
2015-06-25 13:26
is-symbol.js
394
B
-rw-r--r--
2015-06-25 13:26
polyfill.js
768
B
-rw-r--r--
2016-05-17 13:29
validate-symbol.js
616
B
-rw-r--r--
2015-06-25 13:26
Save
Rename
'use strict'; var d = require('d') , isSymbol = require('../is-symbol') , defineProperty = Object.defineProperty; module.exports = function (T, a) { var symbol = T('test'), x = {}; defineProperty(x, symbol, d('foo')); a(x.test, undefined, "Name"); a(x[symbol], 'foo', "Get"); a(x instanceof T, false); a(isSymbol(symbol), true, "Symbol"); a(isSymbol(T.iterator), true, "iterator"); a(isSymbol(T.toStringTag), true, "toStringTag"); x = {}; x[symbol] = 'foo'; if (typeof symbol !== 'symbol') { a.deep(Object.getOwnPropertyDescriptor(x, 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'); };