Sha256: 8592462abeadbf67163944ad1e31b2309f8f3e8a1540d0f39f883837e1e4c1af

Contents?: true

Size: 808 Bytes

Versions: 69

Compression:

Stored size: 808 Bytes

Contents

define(function () {

    /**
     * Debounce callback execution
     */
    function debounce(fn, threshold, isAsap){
        var timeout, result;
        function debounced(){
            var args = arguments, context = this;
            function delayed(){
                if (! isAsap) {
                    result = fn.apply(context, args);
                }
                timeout = null;
            }
            if (timeout) {
                clearTimeout(timeout);
            } else if (isAsap) {
                result = fn.apply(context, args);
            }
            timeout = setTimeout(delayed, threshold);
            return result;
        }
        debounced.cancel = function(){
            clearTimeout(timeout);
        };
        return debounced;
    }

    return debounce;

});

Version data entries

69 entries across 69 versions & 2 rubygems

Version Path
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.18 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.17 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.16 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.15 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.14 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.13 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.12 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.11 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.10 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.9 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.8 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.7 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.6 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.5 node_modules/bower/node_modules/mout/src/function/debounce.js
trusty-festivity-extension-2.5.4 node_modules/bower/node_modules/mout/src/function/debounce.js