Fork me on GitHub
#clojurescript
<
2020-07-26
>
rberger02:07:32

Is there a money library for Clojurescript like there is for Clojure (https://github.com/clojurewerkz/money)? I haven鈥檛 been able to find one so far other than an ancient one pelle/bux.

mdallastella09:07:33

Morning. Does chrome/chromiun definitely drop custom formatter?

borkdude09:07:09

they have communicated that they won't after protest from the CLJS community (mostly on Twitter I think)

mdallastella09:07:10

Yeah, sorry, my bad; I forget to include binaryage/devtools 馃槄

mdallastella09:07:53

Don't know why, I thought it was a shadow-cljs dependency

borkdude09:07:26

I'm using figwheel.main now for one project. It includes it automatically

Karol W贸jcik20:07:31

How to convert string edn to edn in Cljs?

darwin20:07:28

read-string

thheller21:07:05

cljs.reader/read-string to be precise

Karol W贸jcik07:07:09

Ahh thanks! Was using clojure.edn. Is there a difference between those two?

thheller07:07:56

ah right. forgot that was added for compat. it just used cljs.reader under the hood.

Karol W贸jcik07:07:36

Thank you very much!