MCPcopy Create free account
hub / github.com/RtlZeroMemory/Rezi / parseReproBundleBytes

Function parseReproBundleBytes

packages/core/src/repro/schema.ts:1033–1036  ·  view source on GitHub ↗
(bytes: Uint8Array)

Source from the content-addressed store, hash-verified

1031
1032/** Parse and validate a repro bundle from UTF-8 JSON bytes. */
1033export function parseReproBundleBytes(bytes: Uint8Array): ReproParseResult<ReproBundle> {
1034 const json = new TextDecoder().decode(bytes);
1035 return parseReproBundleJson(json);
1036}

Callers 3

loadFixtureBundleFunction · 0.85

Calls 1

parseReproBundleJsonFunction · 0.85

Tested by 1

loadFixtureBundleFunction · 0.68