onstop

1.1.0 • Public • Published

onstop

Detect when a recurring event has stopped happening, given a time interval.

Usage

var onstop = require('onstop');
 
var someEventEmitter = getEventEmitterSomehow();
 
var fn = onstop(3000, function() { // if the event stops for 3 seconds this function gets called.
  console.log('The event stopped happening.');
});
 
someEventEmitter.on('myevent', fn);

if the event stops happening, then starts, and then stops again, the function will be called twice.

License

MIT

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i onstop

    Weekly Downloads

    73

    Version

    1.1.0

    License

    MIT

    Last publish

    Collaborators

    • sorribas