0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-03 13:16:08 -05:00
denoland-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);
}
}