mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-22 19:29:17 +00:00
Fix build hygiene issues
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user