nopCompressor is a compressor that just copies data.
| 1001 | |
| 1002 | // nopCompressor is a compressor that just copies data. |
| 1003 | type nopCompressor struct{} |
| 1004 | |
| 1005 | func (nopCompressor) Do(w io.Writer, p []byte) error { |
| 1006 | n, err := w.Write(p) |
nothing calls this directly
no outgoing calls
no test coverage detected