mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
7 lines
242 B
JavaScript
7 lines
242 B
JavaScript
export const baz = "baz? really?"
|
|
|
|
export { default as bar } from './default-export'
|
|
export { default as foo } from './named-default-export'
|
|
|
|
// should allow conversion from CJS to ES6 as follows:
|
|
export { default as common } from './common'
|