Plato on Github
Report Home
dojo/on/throttle.js
Maintainability
93.78
Lines of code
19
Difficulty
3.80
Estimated Errors
0.04
Function weight
By Complexity
By SLOC
define(['../throttle', '../on'], function(throttle, on){ // summary: // This module provides an event throttler for dojo/on // module: // dojo/on/throttle return function(selector, delay){ // summary: // event parser for custom events // selector: String // The selector to check against // delay: Interger // The amount of ms before testing the selector return function(node, listenerFnc){ return on(node, selector, throttle(listenerFnc, delay)); }; }; });