On this pageSort ExportsName​sort-exportsDescription​Sorts specifiers in an export statementExample​const foo = 5;const bar = 4;export { foo, bar };Copywill be transformed to:const foo = 5;const bar = 4;export { bar, foo };Copy