0.4.0 • Published 6 years ago

@promises/-fp v0.4.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

@promises/-fp

Source Code Version MIT License

Fp is a group of packages of Promises library

Use

$ npm install --save @promises/-fp 
 import {
	error,
	everyParallel,
	everySeries,
	filterParallel,
	filterSeries,
	finally,
	forEachParallel,
	forEachRightSeries,
	forEachSeries,
	mapParallel,
	mapSeries,
	next,
	reduceRightSeries,
	reduceSeries,
	rejectParallel,
	rejectSeries,
	reset,
	sleep,
	someParallel,
	someSeries,
	timesParallel,
	timesSeries,
	toCallback,
	wait
} from '@promises/-fp';

Or

<script src="https://unpkg.com/@promises/-fp/bundle.js"> </script>
let {
	error,
	everyParallel,
	everySeries,
	filterParallel,
	filterSeries,
	finally,
	forEachParallel,
	forEachRightSeries,
	forEachSeries,
	mapParallel,
	mapSeries,
	next,
	reduceRightSeries,
	reduceSeries,
	rejectParallel,
	rejectSeries,
	reset,
	sleep,
	someParallel,
	someSeries,
	timesParallel,
	timesSeries,
	toCallback,
	wait
} = P;

Compatibility

These modules are written in typescript and available in ES5 and ES6 standard, the requirements are a global Promise (native or polyfill).

License

Copyright © 2017 Yisrael Eliav, Licensed under the MIT license.