2016-10-10 03:43:44 +02:00
|
|
|
// 20.2.2.30 Math.sinh(x)
|
2017-04-20 03:09:25 +02:00
|
|
|
var $export = require('./$.export')
|
|
|
|
, expm1 = require('./$.math-expm1')
|
2016-10-10 03:43:44 +02:00
|
|
|
, exp = Math.exp;
|
|
|
|
|
|
|
|
// V8 near Chromium 38 has a problem with very small numbers
|
2017-04-20 03:09:25 +02:00
|
|
|
$export($export.S + $export.F * require('./$.fails')(function(){
|
2016-10-10 03:43:44 +02:00
|
|
|
return !Math.sinh(-2e-17) != -2e-17;
|
|
|
|
}), 'Math', {
|
|
|
|
sinh: function sinh(x){
|
|
|
|
return Math.abs(x = +x) < 1
|
|
|
|
? (expm1(x) - expm1(-x)) / 2
|
|
|
|
: (exp(x - 1) - exp(-x - 1)) * (Math.E / 2);
|
|
|
|
}
|
|
|
|
});
|