mirror of
https://github.com/denoland/deno.git
synced 2025-02-03 13:16:08 -05:00
8610e3578c
Original: c5cc695970
6 lines
100 B
TypeScript
6 lines
100 B
TypeScript
|
|
export function assert(cond: boolean, msg = "assert") {
|
|
if (!cond) {
|
|
throw Error(msg);
|
|
}
|
|
}
|