source: trip-planner-front/node_modules/core-js/modules/es.math.sinh.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 643 bytes
Line 
1var $ = require('../internals/export');
2var fails = require('../internals/fails');
3var expm1 = require('../internals/math-expm1');
4
5var abs = Math.abs;
6var exp = Math.exp;
7var E = Math.E;
8
9var FORCED = fails(function () {
10 // eslint-disable-next-line es/no-math-sinh -- required for testing
11 return Math.sinh(-2e-17) != -2e-17;
12});
13
14// `Math.sinh` method
15// https://tc39.es/ecma262/#sec-math.sinh
16// V8 near Chromium 38 has a problem with very small numbers
17$({ target: 'Math', stat: true, forced: FORCED }, {
18 sinh: function sinh(x) {
19 return abs(x = +x) < 1 ? (expm1(x) - expm1(-x)) / 2 : (exp(x - 1) - exp(-x - 1)) * (E / 2);
20 }
21});
Note: See TracBrowser for help on using the repository browser.