summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/gcd.js
blob: 43bfbc57aef26da4c79f36182cc36a740dda02a6 (plain)
1
2
const gcd = (a, b) => !b ? a : gcd(b, a % b);
module.exports = gcd;