mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-06-05 22:09:23 +02:00
First support for md extensions; Package all needed dependencies in the repo
This commit is contained in:
10
Source/node_modules/core-js/modules/es6.math.asinh.js
generated
vendored
Normal file
10
Source/node_modules/core-js/modules/es6.math.asinh.js
generated
vendored
Normal 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 });
|
Reference in New Issue
Block a user