Bogdan Butnaru
Bogdan Butnaru
I get why the [Ergonomic Brand Checks](https://github.com/tc39/proposal-private-fields-in-in) proposal prevents using `#x` as shorthand for `this.#x`, but did anyone discuss about using something like `##x`? It’s a bit less nice to...
Did anyone discuss the possibility of using `const {#x, #y} = this` as a shorthand for `const {#x: x, #y: y} = this`? In case someone tries to destructure use...
## 🐛 Bug Report When you run `jest.resetAllMocks()` in one `describe` block, it will also reset mocks defined in other `describe` blocks. This struck me as counter-intuitive, even if after...