1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 00:15:35 +02:00
Files
misskey/src/client/app/common/scripts/gcd.ts
2018-03-29 20:32:18 +09:00

3 lines
66 B
TypeScript

const gcd = (a, b) => !b ? a : gcd(b, a % b);
export default gcd;