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

Function areSimilarTypedArrays

lib/internal/util/comparisons.js:197–199  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

195}
196
197function areSimilarTypedArrays(a, b) {
198 return a.byteLength === b.byteLength && compare(a, b) === 0;
199}
200
201function areEqualArrayBuffers(buf1, buf2) {
202 return buf1.byteLength === buf2.byteLength &&

Callers 1

objectComparisonStartFunction · 0.85

Calls 1

compareFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…