Skip to content
This repository has been archived by the owner on Sep 20, 2022. It is now read-only.

Commit

Permalink
fix(eslint): unnecessarily quoted property accept
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Kristian Flaatten committed Jan 9, 2016
1 parent 42b043c commit 4def135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports._opts = function _opts(agent) {
return {
headers: {
'User-Agent': 'NRK%20TV/43 CFNetwork/711.5.6 Darwin/14.0.0',
'accept': '*/*',
accept: '*/*',
'app-version-ios': '43',
'Accept-Language:': 'en-us',
},
Expand All @@ -25,7 +25,7 @@ module.exports._opts = function _opts(agent) {
'AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0',
'Mobile/10A5376e Safari/8536.25',
].join(' '),
'accept': 'application/json, text/javascript, */*; q=0.01',
accept: 'application/json, text/javascript, */*; q=0.01',
'x-requested-with': 'XMLHttpRequest',
},
};
Expand Down

0 comments on commit 4def135

Please sign in to comment.