MCPcopy Create free account
hub / github.com/nodejs/node / TypedArrayAtHelper

Function TypedArrayAtHelper

deps/v8/test/mjsunit/typedarray-helpers.js:216–219  ·  view source on GitHub ↗
(ta, index)

Source from the content-addressed store, hash-verified

214}
215
216function TypedArrayAtHelper(ta, index) {
217 const result = ta.at(index);
218 return Convert(result);
219}
220
221function ArrayAtHelper(ta, index) {
222 const result = Array.prototype.at.call(ta, index);

Callers

nothing calls this directly

Calls 2

ConvertFunction · 0.85
atMethod · 0.45

Tested by

no test coverage detected