(input: unknown)
| 68 | |
| 69 | /** @internal */ |
| 70 | export const isEither = (input: unknown): input is Either.Either<unknown, unknown> => hasProperty(input, TypeId) |
| 71 | |
| 72 | /** @internal */ |
| 73 | export const isLeft = <R, L>(ma: Either.Either<R, L>): ma is Either.Left<L, R> => ma._tag === "Left" |
no outgoing calls
no test coverage detected
searching dependent graphs…