Skip to content

Instantly share code, notes, and snippets.

@jordanstephens
Created July 15, 2020 23:19
Show Gist options
  • Save jordanstephens/103738fa972db3aee0b679747a93c99d to your computer and use it in GitHub Desktop.
Save jordanstephens/103738fa972db3aee0b679747a93c99d to your computer and use it in GitHub Desktop.
cycle
// cycle(0, 1, 3) // => 1
// cycle(1, 1, 3) // => 2
// cycle(2, 1, 3) // => 0
// cycle(0, -1, 3) // => 2
// cycle(1, -1, 3) // => 0
// cycle(2, -1, 3) // => 1
export default function cycle(i, d, n) {
return (i + (n + d)) % n;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment