| 139 | ); |
| 140 | |
| 141 | const isPrimPropertyWithTypeAnnotation = prop => ( |
| 142 | prop.key && |
| 143 | prop.key.type === 'Identifier' && |
| 144 | prop.value && |
| 145 | prop.value.type === 'TypeCastExpression' && |
| 146 | isPrimExpression(prop.value.expression) |
| 147 | ); |
| 148 | |
| 149 | const hasSingleReturnStatement = value => ( |
| 150 | ( |
no test coverage detected