Skip to content

Instantly share code, notes, and snippets.

@Frozenlock
Frozenlock / test.cljs
Last active June 16, 2017 13:15 — forked from skrat/test.cljs
;; some speed tests of functions to access nested properties in JS objects.
(def test-data (->> (into {} (for [k1 (range 10)]
[k1 (into {} (for [k2 (range 10)]
[k2 (into {} (for [k3 (range 10)]
[k3 k3]))]))]))
(clj->js)))