(condition: unknown, message: string)
| 5 | // This file is excluded from the library build (tsconfig excludes `examples/`). |
| 6 | |
| 7 | const assert = (condition: unknown, message: string): void => { |
| 8 | if (!condition) throw new Error(message); |
| 9 | }; |
| 10 | |
| 11 | const assertInClosedRange = ( |
| 12 | label: string, |
no outgoing calls
no test coverage detected