Created
December 30, 2015 18:19
-
-
Save grav/ad1696049b52fca4c9cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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