std/util.ts
2018-11-07 13:16:07 -05:00

7 lines
100 B
TypeScript

export function assert(cond: boolean, msg = "assert") {
if (!cond) {
throw Error(msg);
}
}