massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / modules / es.math.cosh.js
1 var $ = require('../internals/export');
2 var expm1 = require('../internals/math-expm1');
3
4 // eslint-disable-next-line es/no-math-cosh -- required for testing
5 var $cosh = Math.cosh;
6 var abs = Math.abs;
7 var E = Math.E;
8
9 // `Math.cosh` method
10 // https://tc39.es/ecma262/#sec-math.cosh
11 $({ target: 'Math', stat: true, forced: !$cosh || $cosh(710) === Infinity }, {
12   cosh: function cosh(x) {
13     var t = expm1(abs(x) - 1) + 1;
14     return (t + 1 / (t * E * E)) * (E / 2);
15   }
16 });