(x: never, message: string)
| 16 | * @param message The message to be used in the runtime exception. |
| 17 | */ |
| 18 | export function assertNever(x: never, message: string): never { |
| 19 | throw new Error(message) |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Unwrap a value that, according to the type system, could be null or |
no outgoing calls
no test coverage detected