budibase/packages/builder/src/builderStore/uuid.js

10 lines
332 B
JavaScript
Raw Normal View History

export function uuid() {
2020-08-06 22:12:35 +02:00
// always want to make this start with a letter, as this makes it
// easier to use with mustache 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)
})
}