mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
5 lines
126 B
JavaScript
5 lines
126 B
JavaScript
|
export function randomString(prefix = '') {
|
||
|
const uuid = () => Cypress._.random(0, 1e6)
|
||
|
return `${prefix}${uuid()}`
|
||
|
}
|