(condition, message)
| 2615 | // Do NOT use this to enforce a certain condition on any user input. |
| 2616 | |
| 2617 | function assert(condition, message) { |
| 2618 | /* istanbul ignore if */ |
| 2619 | if (!condition) { |
| 2620 | throw new Error('ASSERT: ' + message); |
| 2621 | } |
| 2622 | } |
| 2623 | |
| 2624 | function StringMap() { |
| 2625 | this.$data = {}; |
no outgoing calls
no test coverage detected