Skip to content

Instantly share code, notes, and snippets.

@cjhanks
Created January 15, 2013 23:47
Show Gist options
  • Save cjhanks/4543272 to your computer and use it in GitHub Desktop.
Save cjhanks/4543272 to your computer and use it in GitHub Desktop.
Key checking
['app_name', 'method', 'type'].forEach ( function (item) {
if (!req.headers.hasOwnProperty(item)) {
throw {
etype : 'USER'
,ecode : 406
,source : 'HTTP LOCAL ROUTE'
,info : 'MISSING ITEM [' + item + ']'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment