This package is a brotli decompressor implemented in pure Go.
This package is a brotli compressor and decompressor implemented in Go.
It was translated from the reference implementation (https://github.com/google/brotli) with the `c2go** tool at https://github.com/andybalholm/c2go.
This package is a fork of the upstream project to create a more minimal package with just the decoder and not the encoder.
This is a significantly lighter package in terms of binary size.
It was created by deleting the writer types and then repeatedly removing all unused symbols (detected with the gounused linter).
If you need the brotli compressor, see the upstream project.