(x)
| 214 | } |
| 215 | |
| 216 | export function isFunctionNode (x) { |
| 217 | return (x && x.isFunctionNode === true && x.constructor.prototype.isNode === true) || false |
| 218 | } |
| 219 | |
| 220 | export function isIndexNode (x) { |
| 221 | return (x && x.isIndexNode === true && x.constructor.prototype.isNode === true) || false |
no outgoing calls
no test coverage detected
searching dependent graphs…