This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

15 lines
377 B
JavaScript
Raw Normal View History

2021-04-02 02:24:13 +03:00
var $ = require('../internals/export');
var expm1 = require('../internals/math-expm1');
var exp = Math.exp;
// `Math.tanh` method
// https://tc39.es/ecma262/#sec-math.tanh
$({ target: 'Math', stat: true }, {
tanh: function tanh(x) {
var a = expm1(x = +x);
var b = expm1(-x);
return a == Infinity ? 1 : b == Infinity ? -1 : (a - b) / (exp(x) + exp(-x));
}
});