pastojs: fixed insert array

git-svn-id: trunk@49209 -
This commit is contained in:
Mattias Gaertner 2021-04-15 21:05:08 +00:00
parent bb977b398d
commit b64d1f9dfd

View File

@ -1042,7 +1042,8 @@ var rtl = {
arrayInsert: function(item, arr, index){
if (arr){
return arr.splice(index,0,item);
arr.splice(index,0,item);
return arr;
} else {
return [item];
}