mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-02 08:30:14 +01:00
lint fixes
This commit is contained in:
parent
b94a55f655
commit
eb8c4063ca
@ -11,7 +11,7 @@ export default class AppIdService {
|
||||
|
||||
private static async makeAndGetAppId(key: string) {
|
||||
const existingId = await UtilsService.getObjFromStorage<string>(key);
|
||||
if(existingId != null) {
|
||||
if (existingId != null) {
|
||||
return existingId;
|
||||
}
|
||||
|
||||
|
@ -11,7 +11,9 @@ export default class UtilsService {
|
||||
// ref: http://stackoverflow.com/a/2117523/1090359
|
||||
static newGuid(): string {
|
||||
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {
|
||||
// tslint:disable-next-line
|
||||
const r = Math.random() * 16 | 0;
|
||||
// tslint:disable-next-line
|
||||
const v = c === 'x' ? r : (r & 0x3 | 0x8);
|
||||
return v.toString(16);
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user