Browse Source

Remove debugging print at require time from #8399

Gabriel Horner 2 năm trước cách đây
mục cha
commit
fdfeef82fd
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  1. 0 1
      src/main/frontend/util.cljc

+ 0 - 1
src/main/frontend/util.cljc

@@ -308,7 +308,6 @@
       Use `cancel-fn` to cancel pending callback if there is"
      [f interval]
      (let [debouncer (Debouncer. f interval)]
-       (js/console.log debouncer)
        [(fn [& args] (.apply (.-fire debouncer) debouncer (to-array args)))
         (fn [] (.stop debouncer))])))