lychees's picture
Upload 569 files
87b3b3a
raw
history blame contribute delete
156 Bytes
/**
* Always positive modulus
* @param {int} n Modulus
* @returns {int} this modulo n
*/
Number.prototype.mod = function(n) {
return ((this%n)+n)%n;
}