(left: L)
| 77 | |
| 78 | /** @internal */ |
| 79 | export const left = <L>(left: L): Either.Either<never, L> => { |
| 80 | const a = Object.create(LeftProto) |
| 81 | a.left = left |
| 82 | return a |
| 83 | } |
| 84 | |
| 85 | /** @internal */ |
| 86 | export const right = <R>(right: R): Either.Either<R> => { |
no test coverage detected
searching dependent graphs…