(condition, message)
| 557 | return val; |
| 558 | } |
| 559 | function assert(condition, message) { |
| 560 | if (!condition) { |
| 561 | throw new Error(message); |
| 562 | } |
| 563 | } |
| 564 | function trim(str) { |
| 565 | if (str == null) { |
| 566 | return null; |
no outgoing calls
no test coverage detected
searching dependent graphs…