1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-03 17:08:35 -05:00
denoland-deno/util.ts

7 lines
100 B
TypeScript
Raw Normal View History

2018-11-07 13:16:07 -05:00
export function assert(cond: boolean, msg = "assert") {
if (!cond) {
throw Error(msg);
}
}