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