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

Function getDataViewOrTypedArrayByteOffset

lib/internal/crypto/util.js:683–686  ·  view source on GitHub ↗
(V)

Source from the content-addressed store, hash-verified

681}
682
683function getDataViewOrTypedArrayByteOffset(V) {
684 return isDataView(V) ?
685 DataViewPrototypeGetByteOffset(V) : TypedArrayPrototypeGetByteOffset(V);
686}
687
688function getDataViewOrTypedArrayByteLength(V) {
689 return isDataView(V) ?

Callers 2

truncateToBitLengthFunction · 0.85
normalizeAlgorithmFunction · 0.85

Calls 1

isDataViewFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…