This website requires JavaScript.
Explore
Register
Sign in
OpenSource
/
Sharkey
Watch
1
Star
0
Fork
You've already forked Sharkey
0
mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced
2024-11-17 01:16:27 +01:00
Code
Issues
Projects
Releases
Packages
Wiki
Activity
c2af1f1bff
Sharkey
/
src
/
web
/
app
/
common
/
scripts
/
gcd.ts
3 lines
66 B
TypeScript
Raw
Normal View
History
Unescape
Escape
[Client] 良い感じに
2017-02-16 09:20:45 +01:00
const
gcd
=
(
a
,
b
)
=
>
!
b
?
a
:
gcd
(
b
,
a
%
b
)
;
:sushi: Closes #12, #227 and #58
2017-03-18 12:05:11 +01:00
export
default
gcd
;
Reference in a new issue
Copy permalink