mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
3 lines
72 B
Plaintext
3 lines
72 B
Plaintext
function safe_mod(numb, modd) {
|
|
return modd == 0? numb : numb % modd;
|
|
} |