A clojure server reads a datetime column from a mysql database. By using jdbc this action usually returns an instance of java.sql.Timestamp
I'm bringing this data to a frontend via the transit
format. One could coerce the date to a timestamp and parse it on the frontend for further processing for e.g. the library cljs-time. Is this the way to go or is there another more convenient approach?