Sign in
webkit
/
WebKit
/
36b74c3900290f2598b1d40cf6065a7028fc4a34
/
.
/
JSTests
/
stress
/
big-int-type-of.js
blob: e53cd301246b958f4c6d4da11af7cd0a6b4092ac [
file
] [
log
] [
blame
]
//@ runBigIntEnabled
function
assert
(
a
)
{
if
(!
a
)
throw
new
Error
(
"Bad assertion"
);
}
assert
(
typeof
0n
===
"bigint"
);
assert
(
typeof
1n
!==
"object"
);