0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-04 11:01:20 -05:00

Add nan? and finite? predicates to math ns.

This commit is contained in:
Andrey Antukh 2016-08-11 18:13:28 +03:00
parent 1e9e9ef6d1
commit 3977748e34
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95

View file

@ -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))