class Util { static genUuid(): string { const url = URL.createObjectURL(new Blob()) const result = String(url) URL.revokeObjectURL(url) return result.substring(result.lastIndexOf("/") + 1) } } export {Util}