( condition: boolean, message: string, Err: any = Error )
| 20 | * ``` |
| 21 | */ |
| 22 | export function invariant( |
| 23 | condition: boolean, |
| 24 | message: string, |
| 25 | Err: any = Error |
| 26 | ): asserts condition { |
| 27 | if (!condition) { |
| 28 | throw new Err(message) |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | // This is effectively 2 languages in 2 different regions in the same cluster |
| 33 | const DEFAULT_MATCHING_THRESHOLD = 838 |
no outgoing calls
no test coverage detected