mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 06:56:45 +01:00
3 lines
No EOL
69 B
Text
3 lines
No EOL
69 B
Text
function safe_mod(numb, modd) {
|
|
return modd == 0? 0 : numb % modd;
|
|
} |