Skip to content

Instantly share code, notes, and snippets.

@dball
dball / debounce.clj
Last active December 19, 2015 03:19 — forked from swannodette/debounce.clj
(defn debounce [c ms]
(let [c' (chan)]
(go
(loop [t nil]
(let [loc (<! c)
now (js/Date.)]
(if (or
(nil? t)
(>= (- now t) ms))
(do