mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 01:16:27 +01:00
3 lines
68 B
JavaScript
3 lines
68 B
JavaScript
|
const gcd = (a, b) => !b ? a : gcd(b, a % b);
|
||
|
module.exports = gcd;
|