0.2.0 • Published 8 years ago

rottle v0.2.0

Weekly downloads
11
License
MIT
Repository
github
Last release
8 years ago

Rottle

Throttle function calls using requestAnimationFrame.

Installation

npm install rottle

Usage

var throttle = require('rottle');

var task = function () {
  console.log('done');
};

var throttledTask = throttle(task);

throttledTask();
throttledTask();

// Will log 'done' only once.
0.2.0

8 years ago

0.1.0

10 years ago