geocsv-lite/js/compiled/out/devtools/context.cljs
2020-02-27 14:18:29 +00:00

9 lines
232 B
Clojure

(ns devtools.context)
; default root javascript context, typically js/window in browser, or the root javascript object in node.js
(defn ^:dynamic get-root []
goog/global)
(defn ^:dynamic get-console []
(.-console (get-root)))