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
commit 4509350391
Notes: sideshowbarker 2024-07-19 07:53:18 +09:00

View file

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