Chris Tierney
03/21/2023, 5:01 PMlocal.varA = local.get_varB.reduce( (val, row) => {
val.append(row);
return val;
}, [] );
returns ...$func_CF_ANONYMOUSCLOSURE_413 in the try/catch cause message.
by switching the arrow operator to a function, the code starts working.
The "regressed" code fix below works:
local.varA = local.get_varB.reduce( function(val, row) {
val.append(row);
return val;
}, [] );
I am planning on reporting this to Adobe (@sandip_halder) but wanted to see if anyone had any input on this or have hear the same?Chris Tierney
03/21/2023, 6:49 PMChris Tierney
03/21/2023, 9:29 PM