@type {function(*, string=)}
(condition, text)
| 453 | |
| 454 | /** @type {function(*, string=)} */ |
| 455 | function assert(condition, text) { |
| 456 | if (!condition) { |
| 457 | abort('Assertion failed: ' + text); |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | var globalScope = this; |
| 462 |
no test coverage detected
searching dependent graphs…