Explorar el Código

Added general Utils object. Debounce, in this case.

dev-tmpl
Bryan Miller hace 6 años
padre
commit
830f9b877e
Se han modificado 1 ficheros con 18 adiciones y 0 borrados
  1. +18
    -0
      app/js/untils.js

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

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


Cargando…
Cancelar
Guardar