1
0
Fork 0
mirror of synced 2024-09-09 22:16:26 +12:00
budibase/packages/bbui/src/utils/helpers.js

7 lines
165 B
JavaScript
Raw Normal View History

export const generateID = () => {
2021-05-03 19:31:09 +12:00
const rand = Math.random().toString(32).substring(2)
// Starts with a letter so that its a valid DOM ID
return `A${rand}`
}