Fork me on GitHub
#beginners
<
2019-05-25
>
bones08:05:14

Thanks for your reply @lilactown. So, if not how I described, how does tools.cli work with cljs?

bones08:05:34

How do I pass my namespace to cljs.main? Am I reading https://github.com/clojure/tools.cli/blob/master/README.md correctly that tools.cli now supports cljs?

Ho0man13:05:33

Hi, how can I parse a datetime string like this one 2019-05-25T07:55:41.173+0000 using clojure.java-time ?

bartuka14:05:31

I think the only problem with your string is the end of it.. java-time is expecting something like +00:00 instead of +0000

bartuka14:05:29

(require '[java-time :as time])
(time/offset-date-time "2019-05-25T07:55:41.173+00:00")

Ho0man16:05:57

Great @UBSREKQ5Q Thanks alot