MCPcopy Index your code
hub / github.com/nodejs/node / ArrayFillHelper

Function ArrayFillHelper

deps/v8/test/mjsunit/typedarray-helpers.js:234–240  ·  view source on GitHub ↗
(ta, n, start, end)

Source from the content-addressed store, hash-verified

232}
233
234function ArrayFillHelper(ta, n, start, end) {
235 if (ta instanceof BigInt64Array || ta instanceof BigUint64Array) {
236 Array.prototype.fill.call(ta, BigInt(n), start, end);
237 } else {
238 Array.prototype.fill.call(ta, n, start, end);
239 }
240}
241
242function TypedArrayFindHelper(ta, p) {
243 return ta.find(p);

Calls 1

callMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…