mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-15 18:10:59 -07:00
3 lines
68 B
JavaScript
3 lines
68 B
JavaScript
|
const gcd = (a, b) => !b ? a : gcd(b, a % b);
|
||
|
module.exports = gcd;
|