(options?: DebugBundleExportOptions)
| 644 | } |
| 645 | |
| 646 | async function exportBundleBytes(options?: DebugBundleExportOptions): Promise<Uint8Array> { |
| 647 | const bundle = await exportBundle(options); |
| 648 | return new TextEncoder().encode(stableJson(bundle)); |
| 649 | } |
| 650 | |
| 651 | function processRecords(headers: Uint8Array, payloads: Map<bigint, Uint8Array>): void { |
| 652 | const count = Math.floor(headers.byteLength / DEBUG_RECORD_HEADER_SIZE); |
nothing calls this directly
no test coverage detected