UNPKG

mdui-ext

Version:

a extension for mdui !(not completed)

10 lines (9 loc) 249 B
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 };