yui-throttle Module
Defined in:
yui3/src/yui-throttle/js/throttle.js:1
Throttles a call to a method based on the time between calls. This method is attached
to the Y
object and is <a href="../classes/YUI.html#method_throttle">documented there</a>.
var fn = Y.throttle(function() {
counter++;
});
for (i; i< 35000; i++) {
out++;
fn();
}