Spaces:
Running
Running
export function invariant(condition, message) { | |
const booleanCondition = Boolean(condition); | |
if (!booleanCondition) { | |
throw new Error( | |
message != null ? message : 'Unexpected invariant triggered.', | |
); | |
} | |
} | |