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