Files
med-notes/.pnpm-store/v10/files/d7/7109d58eb0f4d5eed3c4d3839c1804796afd1c6a14dedea4fa9b5dbb28a6a1c46dd24bf2e3c7bbd889ce8c22a01432e93e4e627abf7d5d91d4d8faae6d7ecd
2025-05-09 05:30:08 +02:00

13 lines
306 B
Plaintext

// @flow
// This file is not actually executed
// It is just used by flow for typing
const prefix: string = 'Invariant failed';
export default function invariant(condition: mixed, message?: string | (() => string)) {
if (condition) {
return;
}
throw new Error(`${prefix}: ${message || ''}`);
}