(x)
| 210 | } |
| 211 | |
| 212 | export function isFunctionAssignmentNode (x) { |
| 213 | return (x && x.isFunctionAssignmentNode === true && x.constructor.prototype.isNode === true) || false |
| 214 | } |
| 215 | |
| 216 | export function isFunctionNode (x) { |
| 217 | return (x && x.isFunctionNode === true && x.constructor.prototype.isNode === true) || false |
no outgoing calls
no test coverage detected
searching dependent graphs…