diff options
Diffstat (limited to 'env/dev/cljs')
| -rw-r--r-- | env/dev/cljs/genpass/dev.cljs | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/env/dev/cljs/genpass/dev.cljs b/env/dev/cljs/genpass/dev.cljs new file mode 100644 index 0000000..e6120ba --- /dev/null +++ b/env/dev/cljs/genpass/dev.cljs @@ -0,0 +1,15 @@ +(ns ^:figwheel-no-load genpass.dev +  (:require +    [genpass.core :as core] +    [devtools.core :as devtools])) + +(extend-protocol IPrintWithWriter +  js/Symbol +  (-pr-writer [sym writer _] +    (-write writer (str "\"" (.toString sym) "\"")))) + +(enable-console-print!) + +(devtools/install!) + +(core/init!) | 
