index
:
twilight
trunk
Twilight Package Manager - An old package manager for all my software
root
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
node_modules
/
moment
/
src
/
lib
/
utils
/
mod.js
blob: 8046cdac9f9b1464d2c0fce93118286e13000425 (
plain
)
1
2
3
export
default
function
mod
(
n
,
x
)
{
return
((
n
%
x
)
+
x
)
%
x
;
}