From 3986543293ac680ae111675ab99efe47e41cee08 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 24 Jan 2024 20:34:32 +0100 Subject: [PATCH] :paperclip: Add missing IEquiv implementation for luxon DateTime type --- common/src/app/common/time.cljc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/common/src/app/common/time.cljc b/common/src/app/common/time.cljc index 8b1ead444..6cd8601d6 100644 --- a/common/src/app/common/time.cljc +++ b/common/src/app/common/time.cljc @@ -45,6 +45,14 @@ 0 (if (< (inst-ms it) (inst-ms other)) -1 1))))) + +#?(:cljs + (extend-type DateTime + cljs.core/IEquiv + (-equiv [o other] + (and (instance? DateTime other) + (== (.valueOf o) (.valueOf other)))))) + #?(:cljs (extend-protocol cljs.core/Inst DateTime