0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-04 18:12:59 -05:00
deno/util.ts
2018-11-07 13:16:07 -05:00

6 lines
100 B
TypeScript

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