mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
7 lines
100 B
TypeScript
7 lines
100 B
TypeScript
|
|
export function assert(cond: boolean, msg = "assert") {
|
|
if (!cond) {
|
|
throw Error(msg);
|
|
}
|
|
}
|