(condition: unknown, message: string)
| 8 | // and handles edge cases properly for both tuple and object input formats. |
| 9 | |
| 10 | const assert = (condition: unknown, message: string): void => { |
| 11 | if (!condition) throw new Error(message); |
| 12 | }; |
| 13 | |
| 14 | const assertEqual = <T>(label: string, actual: T, expected: T): void => { |
| 15 | assert( |
no outgoing calls
no test coverage detected