10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
export function assert(
|
|
condition: any,
|
|
msg = 'Assertion failed!'
|
|
): asserts condition {
|
|
if (!condition) {
|
|
console.error(msg)
|
|
throw new Error(msg)
|
|
}
|
|
}
|