fiskercheung.com
@fiskercheung.com
Spend hours to find out why [email protected] doesn't work in the Prettier playground.

Turns out it seems to be a Chrome bug. github.com/fisker/chrom...

cc @boshen.github.io 😀
GitHub - fisker/chrome-uint8-array-from-base64: Reproduce chrome bug?
Reproduce chrome bug? Contribute to fisker/chrome-uint8-array-from-base64 development by creating an account on GitHub.
github.com
December 8, 2025 at 6:21 PM
Is self-import allowed in ESM?

```
>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/...
github.com
October 31, 2025 at 3:29 PM