1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-21 15:55:07 +00:00

LibJS: Remove assert function from exponentiation-basic.js

This commit is contained in:
Linus Groh 2020-04-05 14:47:52 +01:00 committed by Andreas Kling
parent 30ba2c7cec
commit 4509350391

View file

@ -1,5 +1,3 @@
function assert(x) { if (!x) throw 1; }
try {
assert(2 ** 0 === 1);
assert(2 ** 1 === 2);