(list, context)
| 138 | | jsep.UnaryExpression; |
| 139 | |
| 140 | function evaluateArray(list, context) { |
| 141 | return list.map(function (v) { |
| 142 | return evaluate(v, context); |
| 143 | }); |
| 144 | } |
| 145 | |
| 146 | async function evaluateArrayAsync(list, context) { |
| 147 | const res = await Promise.all(list.map(v => evalAsync(v, context))); |