| 31 | const MAX_ENTRY_SIZE = 5 * 1024 * 1024; // 5MB per response body |
| 32 | |
| 33 | export class SizeCappedBuffer { |
| 34 | private entries: CapturedResponse[] = []; |
| 35 | private totalSize = 0; |
| 36 | private readonly maxSize: number; |
nothing calls this directly
no outgoing calls
no test coverage detected