fluture
Version:
FantasyLand compliant (monadic) alternative to Promises
26 lines (20 loc) • 678 B
JavaScript
export {ap} from './ap';
export {alt, alt as or} from './alt';
export {map} from './map';
export {bimap} from './bimap';
export {chain} from './chain';
export {mapRej} from './map-rej';
export {chainRej} from './chain-rej';
export {lastly, lastly as finally} from './lastly';
export {and} from './and';
export {both} from './both';
export {race} from './race';
export {swap} from './swap';
export {fold} from './fold';
export {done} from './done';
export {fork} from './fork';
export {forkCatch} from './fork-catch';
export {promise} from './promise';
export {value} from './value';
export {extractLeft} from './extract-left';
export {extractRight} from './extract-right';