(x)
| 230 | } |
| 231 | |
| 232 | export function isOperatorNode (x) { |
| 233 | return (x && x.isOperatorNode === true && x.constructor.prototype.isNode === true) || false |
| 234 | } |
| 235 | |
| 236 | export function isParenthesisNode (x) { |
| 237 | return (x && x.isParenthesisNode === true && x.constructor.prototype.isNode === true) || false |
no outgoing calls
no test coverage detected
searching dependent graphs…