(...inputs: ClassValue[])
| 4 | import { env } from "@/env.mjs" |
| 5 | |
| 6 | export function cn(...inputs: ClassValue[]) { |
| 7 | return twMerge(clsx(inputs)) |
| 8 | } |
| 9 | |
| 10 | export function formatDate(input: string | number): string { |
| 11 | const date = new Date(input) |
no outgoing calls
no test coverage detected