Index: src/math.js |
diff --git a/src/math.js b/src/math.js |
index 7ead7a861efe20c82dcb70c736ee1ee82305bc21..008a41ee55b2db74f7a522957e471f38990204d2 100644 |
--- a/src/math.js |
+++ b/src/math.js |
@@ -186,14 +186,6 @@ function MathTrunc(x) { |
return x; |
} |
-// ES6 draft 09-27-13, section 20.2.2.30. |
-function MathSinh(x) { |
- if (!IS_NUMBER(x)) x = NonNumberToNumber(x); |
- // Idempotent for NaN, +/-0 and +/-Infinity. |
- if (x === 0 || !NUMBER_IS_FINITE(x)) return x; |
- return (MathExp(x) - MathExp(-x)) / 2; |
-} |
- |
// ES6 draft 09-27-13, section 20.2.2.12. |
function MathCosh(x) { |
if (!IS_NUMBER(x)) x = NonNumberToNumber(x); |
@@ -376,7 +368,7 @@ function SetUpMath() { |
"imul", MathImul, |
"sign", MathSign, |
"trunc", MathTrunc, |
- "sinh", MathSinh, |
+ "sinh", MathSinh, // implemented by third_party/fdlibm |
"cosh", MathCosh, |
"tanh", MathTanh, |
"asinh", MathAsinh, |