andreypopp / andreypopp/es6-module-jstransform
exported functions should still be in scope
Open
- Dominant language
- JavaScript
- Stars
- 16
- Forks
- 4
- PR merge metrics
- No merged PRs in 30d
Description
at least i think
``` js
export default function Constructor() {}
```
yields
``` js
module.exports = function Constructor() {}
```
but it should be:
``` js
function Constructor() {} module.exports = Constructor;
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.