Yuichi Goto
Yuichi Goto
Version: Deno 1.45.5 I ran into the following error (panic) when running `DENO_FUTURE=1 deno run -A npm:vitest run --coverage`: ``` Deno has panicked. This is a bug in Deno. Please...
Version: Deno 2.0.3 I found out that there is a difference in the way that `zlib.gzip()` handles `ArrayBuffer` between Deno and Node.js. The Deno implementation does not accept it while...
This PR implements support for passing `this` context to the generator function in `safeTry`, following the established pattern already implemented in similar libraries like [Effect](https://effect.website/docs/getting-started/using-generators/#passing-this) and [typescript-result](https://www.typescript-result.dev/chaining-vs-generator-syntax#this-context). Closes #632 ###...
I would like to propose a feature enhancement for `neverthrow`'s `safeTry` that enables passing the `this` context to the function being executed. This change would mimic the interface of effect-ts...