(msg?: string)
| 16 | * @returns Never returns, always throws. |
| 17 | */ |
| 18 | export function fail(msg?: string): never { |
| 19 | const msgSuffix = msg ? `: ${msg}` : "."; |
| 20 | throw new AssertionError(`Failed assertion${msgSuffix}`); |
| 21 | } |
no outgoing calls
no test coverage detected