mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-07 19:17:07 +00:00
6 lines
190 B
TypeScript
6 lines
190 B
TypeScript
export function invariant(check: any, message: string, thing?: any) {
|
|
if (!check) {
|
|
throw new Error(`[designer] Invariant failed: ${ message }${thing ? ` in '${thing}'` : ''}`);
|
|
}
|
|
}
|