(condition, message)
| 25 | var MAX_PROPERTY_SOURCE_LENGTH = 1000; |
| 26 | |
| 27 | function invariant(condition, message) { |
| 28 | if (!condition) { |
| 29 | throw new Error(message); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * If the expression is an identifier, it is resolved in the scope chain. |
no outgoing calls
no test coverage detected
searching dependent graphs…