(node)
| 124 | jscodeshift.match(node, { type: jscodeshift.ArrayExpression.name }) |
| 125 | |
| 126 | const isObjectExpression = (node) => |
| 127 | jscodeshift.match(node, { type: jscodeshift.ObjectExpression.name }) |
| 128 | |
| 129 | const isObjectProperty = (node) => |
| 130 | jscodeshift.match(node, { type: jscodeshift.ObjectProperty.name }) |
nothing calls this directly
no outgoing calls
no test coverage detected