mod.js 71 Bytes Raw Blame History Permalink 1 2 3 export default function mod(n, x) { return ((n % x) + x) % x; }