Alexander Berezin
Alexander Berezin
``` const r = ResultAsync .fromSafePromise(new Promise((resolve) => resolve(123))) .andThen((num) => { return errAsync(num); }); ``` its type is `ResultAsync` instead of `ResultAsync` because fromSafePromise returns `ResultAsync` and "unknown" is...
Calling callbacks from within Isolate randomly hangs it. Reproduction is below, just run it and wait for a while. isolated-vm 4.4.1 (current latest) node 16.17.0 (current LTS) Caught this also...
I want to re-export the combine functions like this ```typescript import { Result } from 'neverthrow'; export function combine(resultList: T) { return Result.combine(resultList); } ``` It works fine, but the...