(value, message)
| 6 | } |
| 7 | |
| 8 | function assert(value, message) { |
| 9 | if (!value) { |
| 10 | const ERR_INTERNAL_ASSERTION = lazyError(); |
| 11 | throw new ERR_INTERNAL_ASSERTION(message); |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | function fail(message) { |
| 16 | const ERR_INTERNAL_ASSERTION = lazyError(); |
no test coverage detected
searching dependent graphs…