(desc: string, test?: unknown)
| 45 | function assert(desc: string, test: unknown): asserts test; |
| 46 | // eslint-disable-next-line no-inner-declarations |
| 47 | function assert(desc: string, test?: unknown): asserts test { |
| 48 | if (!test) { |
| 49 | throw new Error(`Assertion Failed: ${desc}`); |
| 50 | } |
| 51 | } |
| 52 | setAssert(assert); |
| 53 | } |
no outgoing calls
no test coverage detected