Skip to content

Commit

Permalink
this eslint-disable no longer required
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgovea committed Feb 14, 2019
1 parent fe70c2a commit 65c2883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function createFrisbeeResponse(origResp) {

const headersObj = {};
origResp.headers.forEach(pair => {
headersObj[pair[0]] = pair[1]; // eslint-disable-line prefer-destructuring
headersObj[pair[0]] = pair[1];
});
Object.defineProperty(resp, 'headersObj', {
value: headersObj
Expand Down

0 comments on commit 65c2883

Please sign in to comment.