Fork me on GitHub
#juxt
<
2020-02-19
>
p-himik08:02:28

Seems like the https://juxt.pro/radar.html page is broken.

👍 8
Lu08:02:44

Thanks for flagging! We are on the process of killing/reworking a few pages :)

grounded_sage10:02:06

I’m having a bit of trouble finding a parse function in juxt/tick I have a date string like this. “`20091127"` which I want to convert into a proper date.

grounded_sage10:02:26

Looking for the equivalent of this from clj-time

(f/parse custom-formatter "20100311")
=> #<DateTime 2010-03-11T00:00:00.000Z>

tmt11:02:22

Hey there, internally we use an interface IParseable which just uses a regex to split up the string and pass the ints to the relevant constructors (https://github.com/juxt/tick/blob/1e14333e3ce142dd3eebb0cca9449a980a924f1e/src/tick/core.cljc#L117). We don't provide a method to create a IParseable instance from a string, so i think the easiest way to read that string in is splice in dashes at the relevant points and then just pass it to tick/parse. There's a parser in there yy yy-mm-dd which is basically what you need.