(t: Compression)
| 30 | const NONE = Number.MAX_VALUE; |
| 31 | |
| 32 | const compressionToString = (t: Compression) => { |
| 33 | if (t === Compression.Unknown) return "unknown"; |
| 34 | if (t === Compression.None) return "none"; |
| 35 | if (t === Compression.Gzip) return "gzip"; |
| 36 | if (t === Compression.Brotli) return "brotli"; |
| 37 | if (t === Compression.Zstd) return "zstd"; |
| 38 | return "out of spec"; |
| 39 | }; |
| 40 | |
| 41 | function MapView(props: { |
| 42 | entries: Entry[] | undefined; |
no outgoing calls
no test coverage detected
searching dependent graphs…