mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
react app
This commit is contained in:
26
react-app/node_modules/core-js/modules/es6.math.hypot.js
generated
vendored
Normal file
26
react-app/node_modules/core-js/modules/es6.math.hypot.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
// 20.2.2.17 Math.hypot([value1[, value2[, … ]]])
|
||||
var $export = require('./$.export')
|
||||
, 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
|
||||
, arg, div;
|
||||
while(i < $$len){
|
||||
arg = abs($$[i++]);
|
||||
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);
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user