UNPKG
mdui-ext
Version:
latest (1.0.0-snapshot.7)
1.0.0-snapshot.7
1.0.0-snapshot.6
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
a extension for mdui !(not completed)
github.com/LemonNekoGH/mdui-ext
LemonNekoGH/mdui-ext
mdui-ext
/
src
/
utils
/
Util.ts
10 lines
(9 loc)
•
256 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
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}