9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
|
export function assert (message, check) {
|
||
|
if (typeof check == "function") {
|
||
|
check = check();
|
||
|
}
|
||
|
if (check !== true) {
|
||
|
throw("assertion failure: " + message);
|
||
|
}
|
||
|
}
|