@c.p/throttle
v1.0.2
Published
throttle a function call from being called too often
Readme
Usage
var throttle = require('@c.p/throttle');
var throttled = throttle(1000, yourFunction);
// calling throttled multiple times will call yourFunction, at most, once per second