UNPKG

@beetpx/beetpx

Version:

A TypeScript framework for pixel art browser games.

4 lines 143 B
export function mod(value, modulus) { return modulus === 0 ? 0 : ((value % modulus) + modulus) % modulus; } //# sourceMappingURL=mod.js.map