juxt 2023-12-07

Is there a way in tick to set the timezone of a zoned-date-time without recalculating the time? I have "Jan 01 8:00am PST" and want to convert it to "Jan 01 8:00am UTC"

not directly. you could go via localdatetime I think: (-> zdt t/date-time (t/in "xxx/yyy")), or drop to cljc.java-time: `

(cljc.java-time.zoned-date-time/with-zone-same-local zdt zone)
`

🙏 1