thedesk/app/node_modules/parse-headers/example.js

11 lines
297 B
JavaScript
Raw Permalink Normal View History

2019-09-13 00:38:13 +10:00
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))