dojo/debounce.js

Maintainability

83.77

Lines of code

31

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Maintainability: 83.77

Created with Raphaël 2.1.00102030402015-1-52014-12-42014-12-3

2015-5-18
Lines of Code: 31

Difficulty

7.67

Estimated Errors

0.06

Function weight

By Complexity

Created with Raphaël 2.1.0<anonymous>2

By SLOC

Created with Raphaël 2.1.0<anonymous>31
define([], function(){
1
define([], function(){
2
    // module:
3
    //      dojo/debounce
4
    // summary:
5
    //      This module provide a debouncer
6
 
7
    return function(cb, wait){
8
        // summary:
9
        //      Create a function that will only execute after `wait` milliseconds
10
        // description:
11
        //      Create a function that will only execute after `wait` milliseconds
12
        //      of repeated execution. Useful for delaying some event action slightly to allow
13
        //      for rapidly-firing events such as window.resize, node.mousemove and so on.
14
        // cb: Function
15
        //      A callback to fire. Like hitch() and partial(), arguments passed to the
16
        //      returned function curry along to the original callback.
17
        // wait: Integer
18
        //      Time to spend caching executions before actually executing.
19
        var timer;
20
        return function(){
21
            if(timer){
22
                clearTimeout(timer);
23
            }
24
            var self = this;
25
            var a = arguments;
26
            timer = setTimeout(function(){
27
                cb.apply(self, a);
28
            }, wait);
29
        };
30
    };
31
});