igogo

Fast Either and Maybe from Fantasy Land with Flow and TypeScript support

Usage no npm install needed!

<script type="module">
  import igogo from 'https://cdn.skypack.dev/igogo';
</script>

README

🦄
igogo
Travis badge Greenkeeper badge

Fast Either and Maybe from Fantasy Land with Flow and TypeScript support

Install

npm

npm install --save igogo

Yarn

yarn add igogo

API

import {
 type Maybe,
 type Either,
 Just,
 Nothing,
 fromNullable,
 opt,
 when,
 nothing,
 Left,
 Right,
 ifElse,
} from 'igogo'

function Just<T>(value: T): Maybe<T>
function Nothing<T>(value: T): Maybe<T>
function fromNullable<T>(value: ?T): Maybe<T>
function opt<T>(value: ?T): Maybe<T>
function when<V>(condition: boolean, value: V): Maybe<V>
function when<V>(predicate: mixed => boolean, value: V): Maybe<V>

const nothing: Maybe<any>

function Left<L, R>(left: L): Either<L, R>
function Right<L, R>(right: R): Either<L, R>
function ifElse<L, R>(condition: boolean, right: R, left: L): Either<L, R>