mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-06 02:27:48 +02:00
pastojs: fixed concat(a) calling arrayRef
This commit is contained in:
parent
9720420ef2
commit
8b28290444
2
compiler/utils/pas2js/dist/rtl.js
vendored
2
compiler/utils/pas2js/dist/rtl.js
vendored
@ -940,7 +940,7 @@ var rtl = {
|
||||
|
||||
arrayConcatN: function(){
|
||||
var a = null;
|
||||
for (var i=1; i<arguments.length; i++){
|
||||
for (var i=0; i<arguments.length; i++){
|
||||
var src = arguments[i];
|
||||
if (src === null) continue;
|
||||
if (a===null){
|
||||
|
Loading…
Reference in New Issue
Block a user