Fix typo in x-listops.js (#5171)

optimising-macrocalls
Saq Imtiaz 2020-12-01 19:14:07 +01:00 zatwierdzone przez GitHub
rodzic cc1f32067f
commit 4079f72310
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -206,7 +206,7 @@ Extended filter operators to manipulate the current list.
if(operands.length > 1) {
results.splice(resultsIndex,1,operands[nextOperandIndex]);
} else {
results.splice(resultsIndex,1,);
results.splice(resultsIndex,1);
}
} else {
results.push(operands[0]);
@ -232,4 +232,4 @@ Extended filter operators to manipulate the current list.
return cycleValueInArray(results,operands,step);
}
})();
})();