mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-28 16:06:20 +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;
|
|
} |