it's 15:51 here.
Well, in UTF it's 13:51. I'm trying to unparse the current local hours by the help of the cljs-time library.
Here's the non-local approach:
(require [cljs-time.format :as tf]
[cljs-time.coerce :as tc])
(tf/unparse (tf/formatter "HH") (tc/from-date (js/Date.)))
;; 13
Unfortunately the following produces the same result and not the desired 15:
(tf/unparse-local (tf/formatter-local "HH") (tc/from-date (js/Date.)))
Does anybody know, what's going on here?