Alex Kocharin
Alex Kocharin
> This has the usual ordered reference problem: if more footnotes are added above a given footnote, its link changes. Can you show a markdown example where that link changes?
Maybe allow user to register some kind of a callback to format res.send(object) result? So if he wants magic to happen, he could register a function that serializes objects to...
1. one interface for returning anything. Instead of remembering `res.json`, `res.jsonp`, `res.whatever` a developer would have to just use `res.send()` everywhere 2. it is more easily configurable, if I want...
In fact, I even thought about second middleware stack that's executed by `res.send()` where you can define functions to manipulate result of `res.send()` (for example, forming JSONP output or doing...
@yoshokatana , so node-http2 inherits its `req` from another `IncomingMessage`, right? And two prototype injections sorta conflict with each other? We probably need a way to specify which class `req/res`...
> @rlidwka do you think you could take a look at this? I don't think so, since I didn't write this code, and I don't have publish permissions, so ask...
These examples are not just examples, they are test cases, which every single parser runs to verify spec conformance. So after this commit spec now mandates the use of different...
I have the same issue when watching files on vite+typescript project. Solved by increasing `inotify` limit on my system (it's only 128 by default): ```sh echo 10240 | sudo tee...
5000 arguments are parsed in 1 second for me... not ideal, but not horrible; python is 2x faster strangely enough, but complexity is the same. python impl is literally the...
Copying is required there because otherwise it's going to modify default args. Here's a case where it matters: ```js import { ArgumentParser } from 'npm:argparse'; let parser = new ArgumentParser({...