Stream.tryMap<U,F = never,>(fn: (value: T) => Promisable<U>,errFn: (error: unknown,value: T,) => Promisable<F>,): Stream<U, E | F>
Maps successful values with fn and transforms errors with errFn. Both
receive the original value so you can contextualize the mapping.