MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / uint32BE

Function uint32BE

packages/engine/src/utils/alphaBlit.test.ts:17–21  ·  view source on GitHub ↗
(n: number)

Source from the content-addressed store, hash-verified

15// ── PNG construction helpers ─────────────────────────────────────────────────
16
17function uint32BE(n: number): Buffer {
18 const b = Buffer.allocUnsafe(4);
19 b.writeUInt32BE(n, 0);
20 return b;
21}
22
23function crc32(data: Buffer): number {
24 let crc = 0xffffffff;

Callers 1

makeChunkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected