1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-21 10:43:16 +00:00

Update to commander 7 (#94)

* Upgrade to commander 7.0.0

* Match lint rules for typescript

* update jslib
This commit is contained in:
Matt Gibson
2021-02-08 13:32:02 -06:00
committed by GitHub
parent 9a1caf1e7e
commit e5d0b3a372
17 changed files with 397 additions and 92 deletions

View File

@@ -10,7 +10,7 @@ export class KeytarSecureStorageService implements StorageService {
constructor(private serviceName: string) { }
get<T>(key: string): Promise<T> {
return getPassword(this.serviceName, key).then((val) => {
return getPassword(this.serviceName, key).then(val => {
return JSON.parse(val) as T;
});
}