You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
297 B
11 lines
297 B
6 months ago
|
var parse = require('./parse-headers')
|
||
|
|
||
|
, headers = [
|
||
|
'Date: Sun, 17 Aug 2014 16:24:52 GMT'
|
||
|
, 'Content-Type: text/html; charset=utf-8'
|
||
|
, 'Transfer-Encoding: chunked'
|
||
|
, 'X-Custom-Header: beep'
|
||
|
, 'X-Custom-Header: boop'
|
||
|
].join('\n')
|
||
|
|
||
|
console.log(parse(headers))
|