Skip to content

import/export Nursery ​

What it does ​

Reports funny business with exports, like repeated exports of names or defaults.

Example ​

javascript
let foo;
export { foo }; // Multiple exports of name 'foo'.
export * from "./export-all"; // export-all.js also export foo

References ​

Released under the MIT License.