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
/
es
/
utils
/
CommonUtil.js
10 lines
(9 loc)
•
249 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
class
CommonUtil
{
static
uuid
(
) {
const
url =
URL
.
createObjectURL
(
new
Blob
());
const
uuid =
String
(url);
URL
.
revokeObjectURL
(url);
return
uuid.
substring
(uuid.
lastIndexOf
(
'/'
) +
1
); } }
export
{
CommonUtil
};