foxygit / RPA-Remisser Log in
commits tags

/webui/frontend/src/lib/ids.ts · 239 B

raw
export function uid(): string {
  // Kort, stabilt id per steg. crypto.randomUUID finns i alla moderna webbläsare.
  try {
    return crypto.randomUUID().slice(0, 12);
  } catch {
    return Math.random().toString(36).slice(2, 14);
  }
}