Jake Demarest-Mays

Results 3 issues of Jake Demarest-Mays

Adding more examples so certain functions are easier to understand for those new to the library. Specifically: * `bimap` * `chain` * `chainNullableK` * `map` * `mapLeft` * `tryCatchK` *...

This also requires updating Typescript to 4.2 and above, to match RXJS's requirements. At this time, docs generation seems to get horribly confused, casting any use of the `Observable` type...

Essentially what I'm looking for would be something akin to this: ```typescript const Inputs = Z.object({ email: Z.string().email(), password: Z.string().min(8), username: Z.string().min(3), id: Z.string().uuid(), base: Z.unknown().optional(), }) const InputFields: Z.ZodEnum...

help wanted