repositorypackage
0.1.3
Repository: https://github.com/wttw/orderedheaders.git
Documentation: pkg.go.dev
# README
orderedheaders
Header parsing retaining order in Go
textproto includes a very nice MIME header parser. But it returns all the headers as a map, meaning it loses any ordering information.
For MIME headers that's seldom a problem, but for email headers it can occasionally be.
This package provides an alternate representation of headers read from a textproto reader as a list of key, value pairs. It also includes a few helper functions that are compatible with those in the textproto and mail packages.