Skip to content

Instantly share code, notes, and snippets.

@grav
Created December 30, 2015 18:19
Show Gist options
  • Save grav/ad1696049b52fca4c9cc to your computer and use it in GitHub Desktop.
Save grav/ad1696049b52fca4c9cc to your computer and use it in GitHub Desktop.
(defn js-iterator-to-vec
[it]
(loop [a []]
(if-let [v (-> (.next it)
(.-value))]
(recur (conj a v))
a)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment