(node)
| 118 | jscodeshift.match(node, { type: jscodeshift.MemberExpression.name }) |
| 119 | |
| 120 | const isNewExpression = (node) => |
| 121 | jscodeshift.match(node, { type: jscodeshift.NewExpression.name }) |
| 122 | |
| 123 | const isArrayExpression = (node) => |
| 124 | jscodeshift.match(node, { type: jscodeshift.ArrayExpression.name }) |
no outgoing calls
no test coverage detected