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