Henrik Lundahl
Results
2
comments of
Henrik Lundahl
Yes, see https://github.com/henriklundahl/lein-cljsbuild-issue-413. This is the steps I took: 1. lein new reagent cljs-project 2. lein new clj-project 3. cd clj-project 4. lein install 5. mkdir ../cljs-project/checkouts 6. cd ../cljs-project/checkouts...
OK, I see. I got this to work for converting from JS Date to textual representation in local time: ``` (unparse (formatter "yyyy-MM-dd HH:mm") (to-default-time-zone dt)) ``` And the other...