promisefallback
v1.0.0
Published
Receives an array of functions, values or promises and returns a promise that resolves with the first of them that resolves.
Downloads
183
Readme
promisefallback
Receives an array of functions, values or promises and returns a promise that resolves with the first of them that resolves.
Installation
npm install promisefallback
Usage
import promiseFallback from 'promisefallback';
const promise = promiseFallback([
Promise.reject('foo'),
() => Promise.reject('bar'),
() => Promise.resolve('baz')
]);
promise.then(value => assert(value === 'baz'));
Testing
Clone the repository and execute:
npm test
Contribute
- Fork it:
git clone https://github.com/softonic/promisefallback.git
- Create your feature branch:
git checkout -b feature/my-new-feature
- Commit your changes:
git commit -am 'Added some feature'
- Check the build:
npm run build
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D