export const isNothing = <T>(maybe: Maybe<T>): maybe is Nothing<T> =>
  isLeft(maybe)