(a, b, msg)
| 30 | } |
| 31 | |
| 32 | function assertEqual(a, b, msg) { |
| 33 | const as = JSON.stringify(a), bs = JSON.stringify(b); |
| 34 | if (as !== bs) throw new Error(msg || `Expected ${bs}, got ${as}`); |
| 35 | } |
| 36 | |
| 37 | function stringifyUnknownContent(value) { |
| 38 | if (value === null || value === undefined) return ''; |
no outgoing calls
no test coverage detected