(nodePath, value)
| 75 | }; |
| 76 | |
| 77 | const memberExpressionComparator = (nodePath, value) => nodePath.matchesPattern(value); |
| 78 | const identifierComparator = (nodePath, value) => nodePath.node.name === value; |
| 79 | const unaryExpressionComparator = (nodePath, value) => nodePath.node.argument.name === value; |
| 80 | const TYPEOF_PREFIX = "typeof "; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…