1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2018-05-14 23:40:11 -04:00
parent ec049edfdf
commit 4b5bab3c0e
15 changed files with 101 additions and 74 deletions

View File

@@ -23,7 +23,7 @@ export class EncodeCommand {
});
process.stdin.on('end', () => {
const b64 = new Buffer(input, 'utf8').toString('base64');
var res = new StringResponse(b64);
const res = new StringResponse(b64);
resolve(Response.success(res));
});
});