(x)
| 23 | if (x !== true) throw new Error(`'${x}' is not true`); |
| 24 | }, |
| 25 | false(x) |
| 26 | { |
| 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}'`); |
nothing calls this directly
no outgoing calls
no test coverage detected