mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-27 05:38:09 -05:00
10 lines
316 B
TypeScript
10 lines
316 B
TypeScript
// adapted from https://github.com/alexreardon/tiny-invariant, changed to show errors in production as well
|
|
|
|
export function invariant(condition: any, message?: string): asserts condition {
|
|
if (condition) return;
|
|
|
|
const addition = message ? `: ${message}` : "";
|
|
|
|
throw new Error(`Invariant failed${addition}`);
|
|
}
|