mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 18:12:59 -05:00
6 lines
100 B
TypeScript
6 lines
100 B
TypeScript
|
|
export function assert(cond: boolean, msg = "assert") {
|
|
if (!cond) {
|
|
throw Error(msg);
|
|
}
|
|
}
|