(...inputs: ClassValue[])
| 2 | import { twMerge } from "tailwind-merge"; |
| 3 | |
| 4 | export function cn(...inputs: ClassValue[]) { |
| 5 | return twMerge(clsx(inputs)); |
| 6 | } |
| 7 | |
| 8 | export async function generateSHA256Hash(text: string) { |
| 9 | const encoder = new TextEncoder(); |
no outgoing calls
no test coverage detected