(condition, msg)
| 19 | let failed = 0; |
| 20 | |
| 21 | function assert(condition, msg) { |
| 22 | if (!condition) throw new Error(msg || 'Assertion failed'); |
| 23 | } |
| 24 | |
| 25 | function assertEqual(a, b, msg) { |
| 26 | const as = JSON.stringify(a); |
no outgoing calls
no test coverage detected