Skip to content

Commit

Permalink
Fixes lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubham Kanodia committed Jan 16, 2018
1 parent 2befb65 commit 8077a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -7747,7 +7747,7 @@ camp.route(/^\/bundlephobia\/(min|minzip)\/(?:@([^/]+)?\/)?([^/]+)?(?:\/([^/]+)?
};

const formatErrorCode = (code) =>
code.replace(/([A-Z])/g, ' $1').substring(1).toLowerCase()
code.replace(/([A-Z])/g, ' $1').substring(1).toLowerCase();

request(requestOptions, (error, response, body) => {
if(typeof body !== 'object' || body === null) {
Expand Down

0 comments on commit 8077a32

Please sign in to comment.