Remove the harmony version of Number.isFinite() in favor of the generally available global isFinite() for now.

This commit is contained in:
Jürg Lehni 2015-01-05 16:17:11 +01:00
parent 2d166a3189
commit 920469426e

View file

@ -62,7 +62,6 @@ var Numerical = new function() {
pow = Math.pow,
cos = Math.cos,
PI = Math.PI,
isFinite = Number.isFinite,
TOLERANCE = 1e-6,
EPSILON = 1e-13,
MACHINE_EPSILON = 1.12e-16;