Fix build hygiene issues

This commit is contained in:
Alex Dima
2017-04-14 14:08:52 +03:00
parent 562f28f4f5
commit aca01f2daa
53 changed files with 89 additions and 89 deletions

View File

@@ -30,7 +30,7 @@ export class Askpass implements Disposable {
req.setEncoding('utf8');
req.on('data', (d: string) => chunks.push(d));
req.on('end', () => {
const {request, host} = JSON.parse(chunks.join(''));
const { request, host } = JSON.parse(chunks.join(''));
this.prompt(host, request).then(result => {
res.writeHead(200);