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