jerryscript/tests/jerry/es2015/math-atanh.js
Rafal Walczyna 9c7a699d10
Implement missing Math Inverse Hyperbolic functions (#3675)
Math.acosh, Math.asinh, Math.acosh

C implementation ported from fdlibm

Part of Issue #3568

JerryScript-DCO-1.0-Signed-off-by: Rafal Walczyna r.walczyna@samsung.com
2020-04-20 15:41:06 +02:00

33 lines
1.1 KiB
JavaScript

// Copyright JS Foundation and other contributors, http://js.foundation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
var nan = NaN;
var p_zero = 0.0;
var m_zero = -p_zero;
function isSameZero (x, y)
{
return x === 0 && (1 / x) === (1 / y);
}
assert(isNaN(Math.atanh(NaN)));
assert(isNaN(Math.atanh(2)));
assert(isNaN(Math.atanh(44)));
assert(isNaN(Math.atanh(-2)));
assert(isNaN(Math.atanh(-13)));
assert(isSameZero(Math.atanh(p_zero), p_zero));
assert(isSameZero(Math.atanh(m_zero), m_zero));
assert(Math.atanh(-1) === Number.NEGATIVE_INFINITY);
assert(Math.atanh(1) === Number.POSITIVE_INFINITY);