resolve-when v1.0.10
resolve-when
Returns a promise that resolves once condition is met
Installation
resolve-when is published at npmjs.com, and can be installed using npm or yarn.
$ npm install resolve-when # npm
$ yarn add resolve-when # yarnimport resolveWhen from 'resolve-when'; // ES6+
const resolveWhen = require('resolve-when'); // ES5Usage
resolveWhen is a function with the following signature:
resolveWhen(condition, options)conditionFunction - a function that will be evaluated to determine whenresolveWhenshould resolve. It is not passed any parameters. Defaults to a function that always resolves totrueoptionsObjectmaxInteger - Maximum number of times thatconditionshould be ran. Ifmaxis undefined,0, a negative number, orInfinity, it will iterate forever. Defaults toundefinedintervalInteger - Number of milliseconds to wait before runningconditionagain. Defaults to50
Defaults properties
resolveWhen.defaults is a read-only property containing the default options object used.
Return Values
If condition returns true, resolveWhen will resolve without any value.
If the maximum number of iterations has been reached and condition has not returned true, resolveWhen will reject with Error(`Maximum iterations (${max}) exceeded`), where max is the same as options.max
Contributing
$ git clone git@github.com:d4nyll/resolve-when.git
$ yarn
$ yarn run testTests
Tests are written in Mocha with the assert module. We are also using lolex as a fake timer to ensure our unit tests run as quick as possible.
Code Quality
We have used husky to help you ensure:
- Your code is linted
- All tests pass
- Coverage is at 100%
Any PRs which does not pass the linter, tests or coverage tools will be rejected.
