Add abs function to math tools.

This commit is contained in:
Andrey Antukh 2016-01-19 22:00:06 +02:00
parent 0eec54fc30
commit 8b26da4e36

View file

@ -2,6 +2,10 @@
"A collection of math utils."
(:require [goog.math :as math]))
(defn abs
[^number v]
(js/Math.abs v))
(defn sin
"Returns the sine of a number"
[^number v]