({value}, comments)
| 28 | } |
| 29 | |
| 30 | function exportDefault({value}, comments) { |
| 31 | return { |
| 32 | type: 'ExportDefaultDeclaration', |
| 33 | declaration: value, |
| 34 | comments, |
| 35 | }; |
| 36 | } |
| 37 | |
| 38 | function exportNamed({id, value}, comments) { |
| 39 | if (isFunctionExpression(value)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…