flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
10
VISUALIZACION/node_modules/core-js/modules/es6.math.asinh.js
generated
vendored
Executable file
10
VISUALIZACION/node_modules/core-js/modules/es6.math.asinh.js
generated
vendored
Executable file
|
|
@ -0,0 +1,10 @@
|
|||
// 20.2.2.5 Math.asinh(x)
|
||||
var $export = require('./_export');
|
||||
var $asinh = Math.asinh;
|
||||
|
||||
function asinh(x) {
|
||||
return !isFinite(x = +x) || x == 0 ? x : x < 0 ? -asinh(-x) : Math.log(x + Math.sqrt(x * x + 1));
|
||||
}
|
||||
|
||||
// Tor Browser bug: Math.asinh(0) -> -0
|
||||
$export($export.S + $export.F * !($asinh && 1 / $asinh(0) > 0), 'Math', { asinh: asinh });
|
||||
Loading…
Add table
Add a link
Reference in a new issue