1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

isGuid util

This commit is contained in:
Kyle Spearrin
2019-10-01 11:03:51 -04:00
parent 53d08067df
commit 034aefa652

View File

@@ -150,6 +150,10 @@ export class Utils {
});
}
static isGuid(id: string) {
return RegExp(/^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/, 'i').test(id);
}
static getHostname(uriString: string): string {
const url = Utils.getUrl(uriString);
try {