1
0
Fork 0
mirror of synced 2024-09-14 08:18:31 +12:00
budibase/packages/builder/src/builderStore/uuid.js
2021-05-04 11:32:22 +01:00

9 lines
339 B
JavaScript

export function uuid() {
// always want to make this start with a letter, as this makes it
// easier to use with template string bindings in the client
return "cxxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx".replace(/[xy]/g, c => {
const r = (Math.random() * 16) | 0,
v = c == "x" ? r : (r & 0x3) | 0x8
return v.toString(16)
})
}