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