(x)
| 226 | } |
| 227 | |
| 228 | export function isObjectNode (x) { |
| 229 | return (x && x.isObjectNode === true && x.constructor.prototype.isNode === true) || false |
| 230 | } |
| 231 | |
| 232 | export function isOperatorNode (x) { |
| 233 | return (x && x.isOperatorNode === true && x.constructor.prototype.isNode === true) || false |
no outgoing calls
no test coverage detected
searching dependent graphs…