mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 20:10:58 +00:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
'use client';
|
|
'use strict';
|
|
|
|
function randomId(prefix = "mantine-") {
|
|
return `${prefix}${Math.random().toString(36).slice(2, 11)}`;
|
|
}
|
|
|
|
exports.randomId = randomId;
|
|
//# sourceMappingURL=random-id.cjs.map
|