Skip to content

Instantly share code, notes, and snippets.

@Jberivera
Created December 13, 2018 02:40
Show Gist options
  • Save Jberivera/cb1e7dedd5e71fc8d7edd5f82e89d449 to your computer and use it in GitHub Desktop.
Save Jberivera/cb1e7dedd5e71fc8d7edd5f82e89d449 to your computer and use it in GitHub Desktop.
function getModulo(value, modulus) {
return (
((value % modulus) + modulus) % modulus
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment