Ver código fonte

Added general Utils object. Debounce, in this case.

dev-tmpl
Bryan Miller 6 anos atrás
pai
commit
830f9b877e
1 arquivos alterados com 18 adições e 0 exclusões
  1. +18
    -0
      app/js/untils.js

+ 18
- 0
app/js/untils.js Ver arquivo

@@ -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;


Carregando…
Cancelar
Salvar