Security update for permissions_by_term
[yaffs-website] / node_modules / parse-headers / example.js
1 var parse = require('./parse-headers')
2
3   , headers = [
4         'Date: Sun, 17 Aug 2014 16:24:52 GMT'
5       , 'Content-Type: text/html; charset=utf-8'
6       , 'Transfer-Encoding: chunked'
7       , 'X-Custom-Header: beep'
8       , 'X-Custom-Header: boop'
9     ].join('\n')
10
11 console.log(parse(headers))