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);