mirror of
https://github.com/MisskeyIO/misskey
synced 2024-12-17 08:09:09 +09:00
3 lines
68 B
JavaScript
3 lines
68 B
JavaScript
const gcd = (a, b) => !b ? a : gcd(b, a % b);
|
|
module.exports = gcd;
|