Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
rambda
/
src
/
modulo.js
blob: 9e316492c17f4284082991f505ea1cdf18c53e10 [
file
] [
log
] [
blame
] [
edit
]
export
function
modulo
(
x
,
y
){
if
(
arguments
.
length
===
1
)
return
_y
=>
modulo
(
x
,
_y
)
return
x
%
y
}