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.cbrt.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'node_modules/core-js/modules/es6.math.cbrt.js') diff --git a/node_modules/core-js/modules/es6.math.cbrt.js b/node_modules/core-js/modules/es6.math.cbrt.js index 7ca7daea8..e45ac4445 100644 --- a/node_modules/core-js/modules/es6.math.cbrt.js +++ b/node_modules/core-js/modules/es6.math.cbrt.js @@ -1,9 +1,9 @@ // 20.2.2.9 Math.cbrt(x) -var $export = require('./_export') - , sign = require('./_math-sign'); +var $export = require('./_export'); +var sign = require('./_math-sign'); $export($export.S, 'Math', { - cbrt: function cbrt(x){ + cbrt: function cbrt(x) { return sign(x = +x) * Math.pow(Math.abs(x), 1 / 3); } -}); \ No newline at end of file +}); -- cgit v1.2.3