MCPcopy Index your code
hub / github.com/angular/angular / byteAt

Function byteAt

packages/compiler/src/i18n/digest.ts:368–370  ·  view source on GitHub ↗
(bytes: Byte[], index: number)

Source from the content-addressed store, hash-verified

366}
367
368function byteAt(bytes: Byte[], index: number): Byte {
369 return index >= bytes.length ? 0 : bytes[index];
370}
371
372function wordAt(bytes: Byte[], index: number, endian: Endian): number {
373 let word = 0;

Callers 1

wordAtFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…