Yagiz Nizipli

Results 171 issues of Yagiz Nizipli

Improves the performance of TextEncoder.encodeInto method Benchmark CI: https://ci.nodejs.org/view/Node.js%20benchmark/job/benchmark-node-micro-benchmarks/1712/ It seems none of the benchmarks are triggering the fast path ``` confidence improvement accuracy (*) (**) (***) util/text-encoder.js op='encode' type='ascii'...

c++
needs-ci

Author of ada-url here. I seems Telegram is using an old version. Updating to latest version fixes couple of bugs.

waiting for answer

Please fill in this template. - [x] Use a meaningful title for the pull request. Include the name of the package modified. - [ ] Test the change in your...

Other Approved
Owner Approved
Critical package
Edits Owners

`volta uninstall PACKAGE_NAME` doesn't actually remove the package. It just removes the symlink in volta/bin folder. ``` ➜ volta uninstall @anthropic-ai/claude-code Removed executable 'claude' installed by '@anthropic-ai/claude-code' success: package '@anthropic-ai/claude-code'...

I'm in the process of replacing utf8lengthv2 in V8 to use simdutf. Ref: https://chromium-review.googlesource.com/c/v8/v8/+/6286751 There is a particular test case in V8 that fails due to the simdutf changes for...

It seems we don't need to remove the first character in happy path.

Updates minimum required Node.js version to v20

Let's make sure that we don't copy all of the headers, just to mutate it. Part of https://github.com/opennextjs/opennextjs-aws/pull/1002

Replacing `delete X.y` with `X.y = undefined` avoids killing any optimizations done by V8 to access the properties of an object faster. Subset of https://github.com/opennextjs/opennextjs-aws/pull/1002

Several optimizations but I think the most impactful one is to avoid having an unnecessary copy everytime getBody() is called.