k9s/vendor/github.com/gdamore/encoding
derailed 366b6cd96b updates logging, fail fast and added namespace/search features 2019-02-05 17:01:58 -07:00
..
.appveyor.yml init drop 2019-01-25 11:53:08 -07:00
.travis.yml updates logging, fail fast and added namespace/search features 2019-02-05 17:01:58 -07:00
LICENSE init drop 2019-01-25 11:53:08 -07:00
README.md init drop 2019-01-25 11:53:08 -07:00
ascii.go init drop 2019-01-25 11:53:08 -07:00
charmap.go updates logging, fail fast and added namespace/search features 2019-02-05 17:01:58 -07:00
doc.go init drop 2019-01-25 11:53:08 -07:00
ebcdic.go init drop 2019-01-25 11:53:08 -07:00
go.mod updates logging, fail fast and added namespace/search features 2019-02-05 17:01:58 -07:00
go.sum updates logging, fail fast and added namespace/search features 2019-02-05 17:01:58 -07:00
latin1.go init drop 2019-01-25 11:53:08 -07:00
latin5.go init drop 2019-01-25 11:53:08 -07:00
utf8.go init drop 2019-01-25 11:53:08 -07:00

README.md

encoding

Linux Status Windows Status Apache License GoDoc Go Report Card

Package encoding provides a number of encodings that are missing from the standard Go encoding package.

We hope that we can contribute these to the standard Go library someday. It turns out that some of these are useful for dealing with I/O streams coming from non-UTF friendly sources.

The UTF8 Encoder is also useful for situations where valid UTF-8 might be carried in streams that contain non-valid UTF; in particular I use it for helping me cope with terminals that embed escape sequences in otherwise valid UTF-8.