mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-12 07:16:49 +01:00
3 lines
No EOL
72 B
Text
3 lines
No EOL
72 B
Text
function safe_mod(numb, modd) {
|
|
return modd == 0? numb : numb % modd;
|
|
} |