1.0.6 • Published 10 years ago

ps-wait v1.0.6

Weekly downloads
23
License
ISC
Repository
-
Last release
10 years ago

Usage

const wait = require('ps-wait')

wait.until(() => conditionIsTrue())
    .then(() => doSomeOtherStuff())

API

wait.until(callback, intervalMs, maxWaitTimeMs)

callback -- Is called on an interval until the result is truthy. If it returns a promise, then the value the promise is resolved with will be checked instead.

intervalMs -- How often to call the callback.

maxWaitTimeMs -- If the callback does not return or resolve to a truthy value within this time limit in milliseconds, then the Promise returned by wait.until will reject.

1.0.6

10 years ago

1.0.5

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago