/** Prisma cuid-like ids used for products (not category slugs). */ export function isCuid(value: string) { return /^c[a-z0-9]{20,}$/i.test(value) }