isGuid util

This commit is contained in:
Kyle Spearrin 2019-10-01 11:03:51 -04:00
parent 53d08067df
commit 034aefa652
1 changed files with 4 additions and 0 deletions

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 {