Skip to main content

Sort Exports

Name​

sort-exports

Description​

Sorts specifiers in an export statement

Example​

const foo = 5;
const bar = 4;
export { foo, bar };

will be transformed to:

const foo = 5;
const bar = 4;
export { bar, foo };