Some of the functions in cljs-time will NPE while the equivalent clj-time functions will handle nils intelligently. For example, from-date in clj-time does a when check on the date. I think this is very valuable as it allows you to safely chain the functions without having to pepper nil checks in-between.
Some of the functions in cljs-time will NPE while the equivalent clj-time functions will handle nils intelligently. For example, from-date in clj-time does a
when
check on the date. I think this is very valuable as it allows you to safely chain the functions without having to pepper nil checks in-between.