Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 159 Bytes

File metadata and controls

14 lines (11 loc) · 159 Bytes

Export Behavior

module.exports.foo = 'asdf'

to

let _default = {}
export const foo = 'asdf'
_default.foo = foo
export default _default