export const isJust = <T>(maybe: Maybe<T>): maybe is Just<T> => isRight(maybe)