| 132 | ); |
| 133 | |
| 134 | const isPrimProperty = prop => ( |
| 135 | prop.key && |
| 136 | prop.key.type === 'Identifier' && |
| 137 | prop.value && |
| 138 | isPrimExpression(prop.value) |
| 139 | ); |
| 140 | |
| 141 | const isPrimPropertyWithTypeAnnotation = prop => ( |
| 142 | prop.key && |
no test coverage detected