source: trip-planner-front/node_modules/core-js/modules/es.math.acosh.js@ e29cc2e

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

initial commit

  • Property mode set to 100644
File size: 746 bytes
Line 
1var $ = require('../internals/export');
2var log1p = require('../internals/math-log1p');
3
4// eslint-disable-next-line es/no-math-acosh -- required for testing
5var $acosh = Math.acosh;
6var log = Math.log;
7var sqrt = Math.sqrt;
8var LN2 = Math.LN2;
9
10var FORCED = !$acosh
11 // V8 bug: https://code.google.com/p/v8/issues/detail?id=3509
12 || Math.floor($acosh(Number.MAX_VALUE)) != 710
13 // Tor Browser bug: Math.acosh(Infinity) -> NaN
14 || $acosh(Infinity) != Infinity;
15
16// `Math.acosh` method
17// https://tc39.es/ecma262/#sec-math.acosh
18$({ target: 'Math', stat: true, forced: FORCED }, {
19 acosh: function acosh(x) {
20 return (x = +x) < 1 ? NaN : x > 94906265.62425156
21 ? log(x) + LN2
22 : log1p(x - 1 + sqrt(x - 1) * sqrt(x + 1));
23 }
24});
Note: See TracBrowser for help on using the repository browser.