2019-11-11 15:51:48 -07:00

8 lines
96 B
JavaScript

// ESM syntax is supported.
const thing = { foo: 'bar' }
export {
thing
}
console.log(thing)