ソースを参照

Added general Utils object. Debounce, in this case.

dev-tmpl
Bryan Miller 6年前
コミット
830f9b877e
1個のファイルの変更18行の追加0行の削除
  1. +18
    -0
      app/js/untils.js

+ 18
- 0
app/js/untils.js ファイルの表示

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


読み込み中…
キャンセル
保存