1.0.1 • Published 6 years ago

@hijup/check-header v1.0.1

Weekly downloads
-
License
CC0-1.0
Repository
github
Last release
6 years ago

check-header

Check if a header name or header value is valid.

https://tools.ietf.org/html/rfc7230#section-3.2.6

This is a simpler version of node's internal optimized header validation and should stay compatible with it. If the corresponding tests are not updated with node's tests, please open an issue or submit a PR.

install

$ npm install check-header

example

import { validHeaderName, validHeaderValue } from 'check-header'

validHeaderName('foo') // => true
validHeaderName('@@') // => false

validHeaderValue('hey') // => true
validHeaderValue('中文呢') // => false