nopDecompressor is a decompressor that just copies data.
| 1017 | |
| 1018 | // nopDecompressor is a decompressor that just copies data. |
| 1019 | type nopDecompressor struct{} |
| 1020 | |
| 1021 | func (nopDecompressor) Do(r io.Reader) ([]byte, error) { return io.ReadAll(r) } |
| 1022 | func (nopDecompressor) Type() string { return compModeNop } |
nothing calls this directly
no outgoing calls
no test coverage detected