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

promise resolve shorthand

This commit is contained in:
Kyle Spearrin
2017-11-01 14:20:18 -04:00
parent 3f354336ef
commit 34ae8adf4d

View File

@@ -92,9 +92,7 @@ class CipherString {
const self = this; const self = this;
if (this.decryptedValue) { if (this.decryptedValue) {
return new Promise((resolve) => { return Promise.resolve(self.decryptedValue);
resolve(self.decryptedValue);
});
} }
return self.cryptoService.getOrgKey(orgId).then((orgKey: any) => { return self.cryptoService.getOrgKey(orgId).then((orgKey: any) => {