(condition, message)
| 26 | }; |
| 27 | |
| 28 | function assert(condition, message) { |
| 29 | if (!condition) { |
| 30 | throw new Error(message); |
| 31 | } |
| 32 | } |
| 33 | function hasOwn(own, prop) { |
| 34 | return own.hasOwnProperty(prop); |
| 35 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…