append to brotli compressed file
Open
feature
release-v1.1.1
- Dominant language
- TypeScript
- Stars
- 14.9k
- Forks
- 1.4k
- Avg merge
- 4d 20h
- Merged PRs (30d)
- 9
Description
Is it possible to append data to a brotli compressed file such that it is compressed automatically?
The following would work, e.g. for gzip
```
$echo 'foo' | gzip >! test.gz
$echo 'foo' | gzip >> test.gz
zcat test
foo
foo
```
While the same approach would fail using `brotli` with
`corrupt input`
Contributor guide
Assessment
This issue has not been assessed yet.