MCPcopy
hub / github.com/angular/angular / add32

Function add32

packages/service-worker/cli/sha1.ts:59–61  ·  view source on GitHub ↗
(a: number, b: number)

Source from the content-addressed store, hash-verified

57}
58
59function add32(a: number, b: number): number {
60 return add32to64(a, b)[1];
61}
62
63function add32to64(a: number, b: number): [number, number] {
64 const low = (a & 0xffff) + (b & 0xffff);

Callers 2

_sha1Function · 0.70
add64Function · 0.70

Calls 1

add32to64Function · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…