afo-interval

1.0.1 • Public • Published

Interval

A simple OOP-style wrapper for setInterval.

var Interval = require('afo-interval');
 
var timer = new Interval(function(){
    console.log(new Date().toISOString());
},1000,true); // every 1s, automatically start
 
timer.pause(); // pause it
 
timer.resume(); // resume it
 
timer.unref(); // unref it
 
timer.ref(); // re-ref it
 
// ... and more
 
// auto-start is optional, defaults to false
new Interval(function(){},1000);

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i afo-interval

    Weekly Downloads

    1

    Version

    1.0.1

    License

    BSD-3-Clause

    Last publish

    Collaborators

    • zammit