mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 07:36:44 -06:00
3 lines
91 B
TypeScript
3 lines
91 B
TypeScript
export function gcd(a: number, b: number): number {
|
|
return b === 0 ? a : gcd(b, a % b);
|
|
}
|