mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-25 22:46:19 +01:00
3 lines
72 B
Text
3 lines
72 B
Text
|
function safe_mod(numb, modd) {
|
||
|
return modd == 0? numb : numb % modd;
|
||
|
}
|