From 363723fc84f7b8477592e0105aeb331ec9a017af Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 14 Aug 2017 05:01:11 +0200 Subject: node_modules --- node_modules/core-js/modules/es6.math.asinh.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'node_modules/core-js/modules/es6.math.asinh.js') diff --git a/node_modules/core-js/modules/es6.math.asinh.js b/node_modules/core-js/modules/es6.math.asinh.js index e6a74abb5..ddf466628 100644 --- a/node_modules/core-js/modules/es6.math.asinh.js +++ b/node_modules/core-js/modules/es6.math.asinh.js @@ -1,10 +1,10 @@ // 20.2.2.5 Math.asinh(x) -var $export = require('./_export') - , $asinh = Math.asinh; +var $export = require('./_export'); +var $asinh = Math.asinh; -function asinh(x){ +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}); \ No newline at end of file +// Tor Browser bug: Math.asinh(0) -> -0 +$export($export.S + $export.F * !($asinh && 1 / $asinh(0) > 0), 'Math', { asinh: asinh }); -- cgit v1.2.3