| 119 | }; |
| 120 | |
| 121 | const isPrimExpression = node => ( |
| 122 | node.type === 'Literal' || ( // NOTE this might change in babylon v6 |
| 123 | node.type === 'Identifier' && |
| 124 | node.name === 'undefined' |
| 125 | )); |
| 126 | |
| 127 | const isFunctionExpression = node => ( |
| 128 | node.key && |
no outgoing calls
no test coverage detected