Parser combinator library for JavaScript
npm install @dashkite/http-headersParsers and formatters for HTTP Headers

Currently only available via local development.
Each header provides a subpath import that exports a parse and format function.
``coffeescript
import * as Authorization from "@dashkite/http-headers/authorize"
authorization =
scheme: "rune"
parameters: { rune, nonce }
assert.deepEqual authorization,
Authorize.parse header,
Authorize.format authorization
`
You may also import the header namespaces directly:
`coffee``
import { Authorization, WWWAuthenticate } from "@dashkite/http-headers"