(right: R)
| 84 | |
| 85 | /** @internal */ |
| 86 | export const right = <R>(right: R): Either.Either<R> => { |
| 87 | const a = Object.create(RightProto) |
| 88 | a.right = right |
| 89 | return a |
| 90 | } |
| 91 | |
| 92 | /** @internal */ |
| 93 | export const getLeft = <R, L>( |
no test coverage detected