Small fixes
A selection of 80 fixes from 174 pull requests.
33.A missing first character
The binary codec consumed a leading U+FEFF as a byte-order marker. ignoreBOM: true preserves it as part of the original string.
11const utf8DecodeFatal = new TextDecoder("utf-8", { fatal: true })const utf8DecodeFatal = new TextDecoder("utf-8", { fatal: true, ignoreBOM: true })