andreypopp / andreypopp/es6-module-jstransform

exported functions should still be in scope

Open
#7 1 comment 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.