Turns out it seems to be a Chrome bug. github.com/fisker/chrom...
cc @boshen.github.io 😀
Turns out it seems to be a Chrome bug. github.com/fisker/chrom...
cc @boshen.github.io 😀
```
>cat test.js
export const hello = "it works!";
import { hello as importedHello } from "./test.js";
console.log({
hello,
importedHello,
});
>node test.js
{ hello: 'it works!', importedHello: 'it works!' }
```
github.com/nodejs/node/...
```
>cat test.js
export const hello = "it works!";
import { hello as importedHello } from "./test.js";
console.log({
hello,
importedHello,
});
>node test.js
{ hello: 'it works!', importedHello: 'it works!' }
```
github.com/nodejs/node/...