countdown-promise
v1.0.2
Published
Create a Promise that resolves after n counts
Downloads
5
Maintainers
Readme
countdown-promise
Create a promise that resolves after n counts.
Install
$ npm install --save countdown-promise
Usage
const Countdown = require('countdown');
const countdown = Countdown(5)
countdown.promise.then(() => console.log('Done!'))
countdown.count().count().count().count()
// Nothing happens yet.
countdown.count() // (note this is the 5th `count`)
// "Done!" is printed on console.
API
Countdown()
Returns an Object
with a promise
property and a function to count()
.
License
MIT © Gerardo Munguia