(a, b)
| 27 | if (x !== false) throw new Error(`'${x}' is not false`); |
| 28 | }, |
| 29 | same(a, b) |
| 30 | { |
| 31 | if (a !== b) throw new Error(`'${a}' does not equal to '${b}'`); |
| 32 | }, |
| 33 | arrayEqual(a, b) |
| 34 | { |
| 35 | if (JSON.stringify(a) !== JSON.stringify(b)) throw new Error(`'${a}' does not equal to '${b}'`); |
nothing calls this directly
no outgoing calls
no test coverage detected