ttlfn

0.1.0 • Public • Published

ttlfn

Wraps a function with a time limit. If the function is not called by the specified time it will never call the original function and optionally call a notifier function.

npm tag

Usage

var ttlfn = require('ttlfn');
 
var myfunc = ttlfn(3000, function() {
  console.log('Hello');
}, function() {
  console.log('Good bye');
});
 
myfunc()
 
setTimout(myfunc, 4000);
 

The above example will print.

Hello
Good Bye

/ttlfn/

    Package Sidebar

    Install

    npm i ttlfn

    Weekly Downloads

    1

    Version

    0.1.0

    License

    MIT

    Last publish

    Collaborators

    • coen-hyde