* Pure assertion tests whether a value is truthy, as determined * by !!value. * @param {...any} args * @returns {void}
(...args)
| 183 | * @returns {void} |
| 184 | */ |
| 185 | function assert(...args) { |
| 186 | innerOk(assert, ...args); |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * Pure assertion tests whether a value is truthy, as determined |
no test coverage detected
searching dependent graphs…