UNPKG

php.js

Version:

Use phpjs functions as required.

12 lines (10 loc) 322 B
module.exports=function(){ return hypot.apply(exports,arguments) }; function hypot(x, y) { // discuss at: http://phpjs.org/functions/hypot/ // original by: Onno Marsman // example 1: hypot(3, 4); // returns 1: 5 // example 2: hypot([], 'a'); // returns 2: 0 return Math.sqrt(x * x + y * y) || 0; }