Rongjian Zhang
Rongjian Zhang
This PR migrates expressions such as `a ? a.b : c` to `a?.b ?? c` Codemod script: https://github.com/pd4d10/nodejs-codemod/blob/main/src/optional-chaining.ts Also see: https://github.com/nodejs/node/issues/38609
Dart has a [snapshot mechanism](https://github.com/dart-lang/sdk/wiki/Snapshots) to bundle all resources in one file. Is there a way to read file content from snapshot?
Take `addUploader` as an example: ```dart Future addUploader(String package, String userEmail); ``` We don't know information of the operator. How about changing it to: ```dart Future addUploader(String package, String userEmail,...
> Before reporting a bug - [x] Check [common issues](https://katex.org/docs/issues.html). - [x] Check the bug is reproducible in [the demo](https://katex.org). If not, check KaTeX is up-to-date and installed correctly. -...
I'm trying to make [a plugin](https://github.com/pd4d10/dprint-plugin-package-json) to sort `package.json`, like [sort-package-json](https://www.npmjs.com/package/sort-package-json) does. While testing locally, it seems to be conflict with [the JSON plugin](https://github.com/dprint/dprint-plugin-json). Only one of them can work...