(value: never, message: string)
| 12 | * Asserts that the value is never. If this function is reached, it throws. |
| 13 | */ |
| 14 | export const assertNever = (value: never, message: string): never => { |
| 15 | debugger; |
| 16 | throw new Error(message.replace('{value}', JSON.stringify(value))); |
| 17 | }; |
| 18 | |
| 19 | /** |
| 20 | * Filters the object by value. |
no test coverage detected