(x)
| 172 | } |
| 173 | |
| 174 | export function isArrayNode (x) { |
| 175 | return (x && x.isArrayNode === true && x.constructor.prototype.isNode === true) || false |
| 176 | } |
| 177 | |
| 178 | export function isAssignmentNode (x) { |
| 179 | return (x && x.isAssignmentNode === true && x.constructor.prototype.isNode === true) || false |
no outgoing calls
no test coverage detected
searching dependent graphs…