Skip to content

Commit

Permalink
Run new prettier against code
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Mar 26, 2020
1 parent 32d30d0 commit b355cfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webServiceClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ export default class WebServiceClient {
};

return new Promise((resolve, reject) => {
const req = https.request(options, response => {
const req = https.request(options, (response) => {
let data = '';

response.on('data', chunk => {
response.on('data', (chunk) => {
data += chunk;
});

Expand Down

0 comments on commit b355cfd

Please sign in to comment.