index
:
sharkey
stable
my custom sharkey fork
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
client
/
app
/
common
/
scripts
/
gcd.ts
blob: 9a19f9da664f2ae89c51c262edc66eb5b1cafb1f (
plain
)
1
2
const
gcd
=
(
a
,
b
)
=>
!
b
?
a
:
gcd
(
b
,
a
%
b
);
export
default
gcd
;