andrewmcveigh / cljs-time

A clj-time inspired date library for clojurescript.
342 stars 57 forks source link

today-at is unaffected by do-at #104

Closed vikeri closed 6 years ago

vikeri commented 6 years ago

Wrapping a call to today-at with do-at does nothing, it will still use the current time as base.

(do-at (t/date-time 2010 10 10)
       (t/today-at 0 0))
;; => <Not 2010-10-10T00:00:00>