UNPKG

180 BPlain TextView Raw
1function assert(condition: boolean, message: string): void {
2 if (condition !== true) {
3 throw new Error("assertion failed: " + message);
4 }
5}
6
7export default assert;