mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 15:06:22 +01:00
4 lines
No EOL
101 B
Text
4 lines
No EOL
101 B
Text
function array_safe_get(arr, index) {
|
|
if(index >= array_length(arr)) return 0;
|
|
return arr[index];
|
|
} |