Files
profilarr/src/lib/shared/uuid.ts

17 lines
500 B
TypeScript

/**
* Generate a UUID v4, with fallback for non-secure contexts (HTTP)
* crypto.randomUUID() requires HTTPS or localhost
*/
export function uuid(): string {
if (typeof crypto !== 'undefined' && typeof crypto.randomUUID === 'function') {
return crypto.randomUUID();
}
// Fallback for non-secure contexts
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {
const r = (Math.random() * 16) | 0;
const v = c === 'x' ? r : (r & 0x3) | 0x8;
return v.toString(16);
});
}