dfcreative/mumath

View on GitHub
len.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Return quadratic length
 *
 * @module  mumath/loop
 *
 */
'use strict';

module.exports = function (a, b) {
    return Math.sqrt(a*a + b*b);
};