* Expose a strict only variant of assert. * @param {...any} args * @returns {void}
(...args)
| 879 | * @returns {void} |
| 880 | */ |
| 881 | function strict(...args) { |
| 882 | innerOk(strict, ...args); |
| 883 | } |
| 884 | |
| 885 | ArrayPrototypeForEach([ |
| 886 | 'ok', 'fail', 'equal', 'notEqual', 'deepEqual', 'notDeepEqual', |
no test coverage detected
searching dependent graphs…