UNPKG

nextjs-utils-hooks

Version:

A collection of useful hooks and utils built specifically for Next.js App Router.

10 lines (9 loc) 319 B
export function generateUUID() { return crypto.randomUUID ? crypto.randomUUID() : "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); }); }