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.
|
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)) |