MCPcopy
hub / github.com/visgl/deck.gl / evaluateArray

Function evaluateArray

modules/json/src/expression-eval/expression-eval.ts:140–144  ·  view source on GitHub ↗
(list, context)

Source from the content-addressed store, hash-verified

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

Callers 1

evaluateFunction · 0.85

Calls 1

evaluateFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…