(x)
| 19 | if (x.name !== name) throw new Error(`'${x}' does not have a name of ${name}`); |
| 20 | }, |
| 21 | true(x) |
| 22 | { |
| 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`); |
nothing calls this directly
no outgoing calls
no test coverage detected