mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-12-03 04:52:40 +00:00
9 lines
291 B
Plaintext
9 lines
291 B
Plaintext
|
// @flow strict
|
||
|
export default function devAssert(condition: mixed, message: string): void {
|
||
|
const booleanCondition = Boolean(condition);
|
||
|
// istanbul ignore else (See transformation done in './resources/inlineInvariant.js')
|
||
|
if (!booleanCondition) {
|
||
|
throw new Error(message);
|
||
|
}
|
||
|
}
|