2019-11-11 16:01:17 -07:00

10 lines
118 B
JavaScript

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