1.0.2 • Published 6 years ago

countdown-promise v1.0.2

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

countdown-promise

npm version CircleCI build

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