wallet-core/node_modules/core-js/modules/es6.math.hypot.js

26 lines
680 B
JavaScript
Raw Normal View History

2016-10-10 03:43:44 +02:00
// 20.2.2.17 Math.hypot([value1[, value2[, … ]]])
var $export = require('./$.export')
2016-10-10 03:43:44 +02:00
, abs = Math.abs;
$export($export.S, 'Math', {
hypot: function hypot(value1, value2){ // eslint-disable-line no-unused-vars
var sum = 0
, i = 0
, $$ = arguments
, $$len = $$.length
, larg = 0
2016-10-10 03:43:44 +02:00
, arg, div;
while(i < $$len){
arg = abs($$[i++]);
2016-10-10 03:43:44 +02:00
if(larg < arg){
div = larg / arg;
sum = sum * div * div + 1;
larg = arg;
} else if(arg > 0){
div = arg / larg;
sum += div * div;
} else sum += arg;
}
return larg === Infinity ? Infinity : larg * Math.sqrt(sum);
}
});