Skip to content

Instantly share code, notes, and snippets.

@butchi
Last active August 29, 2015 14:10
Show Gist options
  • Save butchi/bac3f9cd09333f19dd43 to your computer and use it in GitHub Desktop.
Save butchi/bac3f9cd09333f19dd43 to your computer and use it in GitHub Desktop.
function mod(i, j) {
return (i % j) < 0 ? (i % j) + 0 + (j < 0 ? -j : j) : (i % j + 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment