Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
unbox-primitive /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
1.34
KB
-rw-r--r--
package.json
1.66
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict'; var whichBoxedPrimitive = require('which-boxed-primitive'); var bind = require('function-bind'); var hasSymbols = require('has-symbols')(); var hasBigInts = require('has-bigints')(); var stringToString = bind.call(Function.call, String.prototype.toString); var numberValueOf = bind.call(Function.call, Number.prototype.valueOf); var booleanValueOf = bind.call(Function.call, Boolean.prototype.valueOf); var symbolValueOf = hasSymbols && bind.call(Function.call, Symbol.prototype.valueOf); var bigIntValueOf = hasBigInts && bind.call(Function.call, BigInt.prototype.valueOf); module.exports = function unboxPrimitive(value) { var which = whichBoxedPrimitive(value); if (typeof which !== 'string') { throw new TypeError(which === null ? 'value is an unboxed primitive' : 'value is a non-boxed-primitive object'); } if (which === 'String') { return stringToString(value); } if (which === 'Number') { return numberValueOf(value); } if (which === 'Boolean') { return booleanValueOf(value); } if (which === 'Symbol') { if (!hasSymbols) { throw new EvalError('somehow this environment does not have Symbols, but you have a boxed Symbol value. Please report this!'); } return symbolValueOf(value); } if (which === 'BigInt') { return bigIntValueOf(value); } throw new RangeError('unknown boxed primitive found: ' + which); };
Close