From 3977748e345f4beade7a7a6816a19f5983cae00a Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 11 Aug 2016 18:13:28 +0300 Subject: [PATCH] Add nan? and finite? predicates to math ns. --- src/uxbox/util/math.cljs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/uxbox/util/math.cljs b/src/uxbox/util/math.cljs index 401730e74..ec6270e07 100644 --- a/src/uxbox/util/math.cljs +++ b/src/uxbox/util/math.cljs @@ -9,6 +9,14 @@ "A collection of math utils." (:require [goog.math :as math])) +(defn ^boolean nan? + [v] + (js/isNaN v)) + +(defn ^boolean finite? + [v] + (js/isFinite v)) + (defn abs [^number v] (js/Math.abs v))