gmunguia / countdown-promise

⏱ . . . 💣

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

⏱ . . . 💣

License:MIT License


Languages

Language:JavaScript 100.0%