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);

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.1
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.1
    1

Package Sidebar

Install

npm i afo-interval

Weekly Downloads

1

Version

1.0.1

License

BSD-3-Clause

Last publish

Collaborators

  • zammit