mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-30 14:38:10 +09:00
3 lines
66 B
TypeScript
3 lines
66 B
TypeScript
const gcd = (a, b) => !b ? a : gcd(b, a % b);
|
|
export default gcd;
|