mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 02:00:43 +00:00
7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
|
|
// http://stackoverflow.com/questions/4467539/javascript-modulo-not-behaving
|
|
export function modulo(i, n) {
|
|
return ((i % n) + n) % n;
|
|
}
|
|
|