(errorMessage: string)
| 24 | |
| 25 | // https://stackoverflow.com/a/65666402 |
| 26 | export function throwExp(errorMessage: string): never { |
| 27 | throw new Error(errorMessage) |
| 28 | } |
| 29 | |
| 30 | export function optionMap<T, R>( |
| 31 | t: T | null | undefined, |
nothing calls this directly
no outgoing calls
no test coverage detected