UNPKG

quxt

Version:

Lodash but OVERPOWERED!

9 lines (8 loc) 118 B
function gcd(a, b) { if (b) { return gcd(b, a % b) } else { return Math.abs(a) } } module.exports = gcd