1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 23:55:06 +00:00
serenity/Libraries/LibJS/Tests/builtins/BigInt/BigInt.asUintN.js
2020-07-03 19:30:13 +02:00

9 lines
145 B
JavaScript

load("test-common.js");
try {
assert(BigInt.asUintN.length === 2);
console.log("PASS");
} catch (e) {
console.log("FAIL: " + e);
}