Skip to content

Commit

Permalink
rebound links + corrected ES7
Browse files Browse the repository at this point in the history
  • Loading branch information
benmosher authored Sep 15, 2016
1 parent 49cf441 commit 935f8a9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/rules/no-named-as-default.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import foo from './foo.js';
import bar from './foo.js';
```

For [ES7], this also prevents exporting the default from a referenced module as a name within than module, for the same reasons:
For post-ES2015 `export` extensions, this also prevents exporting the default from a referenced module as a name within than module, for the same reasons:

```js
// valid:
Expand All @@ -39,8 +39,8 @@ export bar from './foo.js';

## Further Reading

- ECMAScript Proposal: export ns from
- ECMAScript Proposal: export default from
- ECMAScript Proposal: [export ns from]
- ECMAScript Proposal: [export default from]

[export-ns-from]: https://github.com/leebyron/ecmascript-export-ns-from
[export-default-from]: https://github.com/leebyron/ecmascript-export-default-from
[export ns from]: https://github.com/leebyron/ecmascript-export-ns-from
[export default from]: https://github.com/leebyron/ecmascript-export-default-from

0 comments on commit 935f8a9

Please sign in to comment.