1.3.1 • Published 7 years ago
@sbizeul/maybe v1.3.1
Maybe
Maybe type to use with Flow
Install
yarn add @sbizeul/maybe
or
npm i @sbizeul/maybe
Usage
import * as Maybe from '@sbizeul/maybe'
const add = x => x + x
const maybe = Maybe.Just(5)
const result = R.pipe(
Maybe.map(add),
Maybe.getOrElse(() => 0)
)(maybe)