added the extra
.
But still not seeing the full date like so: “March 20, 2021”dateStyle is not supported in Safari. You need to use something else. Google closure library surely has utils for this.
Ah. Fallback option could be Google closure https://google.github.io/closure-library/api/goog.i18n.DateTimeFormat.html that might have what you need.
in http://app.klipse.tech/, paste in top left box
(->
(js/Intl.DateTimeFormat. "en-US"
#js {:dateStyle "full" :timeStyle "long"})
(.format (js/Date.)))
shows
"Saturday, March 6, 2021 at 6:46:29 AM GMT"
which looks right afaik.@henryw374 when I put the following in the app, I get “3/6/2021”
shows “Saturday, March 6, 2021 at 12:58:25 PM GMT+5:30” in chrome but 3/6/2021 in safari and react native
how to fix this?
Hello! What needs to be true for a macro to be self-host compatible? My quick search did not reveal any good answer.... Thank you!
it must not use any CLJ JVM specific code. thats about it.