mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-15 10:01:01 -07:00
2 lines
66 B
TypeScript
2 lines
66 B
TypeScript
const gcd = (a, b) => !b ? a : gcd(b, a % b);
|
|
export default gcd;
|