Sfoglia il codice sorgente

Added general Utils object. Debounce, in this case.

dev-tmpl
Bryan Miller 6 anni fa
parent
commit
830f9b877e
1 ha cambiato i file con 18 aggiunte e 0 eliminazioni
  1. +18
    -0
      app/js/untils.js

+ 18
- 0
app/js/untils.js Vedi File

@@ -0,0 +1,18 @@
const utils = {
debounce:function(func, delay){
var timeout = null;
return function(){
var context = this;
var args = arguments;
clearTimeout(timeout);
timeout = setTimeout(function(){
func.apply(context, args);
}, delay);
};
}
};


Object.freeze(utils);
export default utils;


Loading…
Annulla
Salva