Skip to content
Snippets Groups Projects
username.ts 169 B
Newer Older
Yusuf Akgül's avatar
Yusuf Akgül committed
import { z } from 'zod'

export const UsernameValidator = z.object({
    name: z
        .string()
        .min(3)
        .max(32)
        .regex(/^[a-zA-Z0-9_]+$/),
})