|
|
import { type ClassValue, clsx } from "clsx"; |
|
|
import { twMerge } from "tailwind-merge"; |
|
|
|
|
|
export function cn(...inputs: ClassValue[]) { |
|
|
return twMerge(clsx(inputs)); |
|
|
} |
|
|
|
|
|
export async function generateSHA256Hash(text: string) { |
|
|
const encoder = new TextEncoder(); |
|
|
const data = encoder.encode(text); |
|
|
const hashBuffer = await crypto.subtle.digest("SHA-256", data); |
|
|
const hashArray = Array.from(new Uint8Array(hashBuffer)); |
|
|
return hashArray.map((b) => b.toString(16).padStart(2, "0")).join(""); |
|
|
} |
|
|
|
|
|
export function formatTimestamp(timestamp: string | number) { |
|
|
try { |
|
|
|
|
|
if (typeof timestamp === "string" && timestamp.includes("T")) { |
|
|
const date = new Date(timestamp); |
|
|
if (!Number.isNaN(date.getTime())) { |
|
|
return date.toLocaleString(); |
|
|
} |
|
|
} |
|
|
return "Fecha inválida"; |
|
|
} catch { |
|
|
return "Fecha inválida"; |
|
|
} |
|
|
} |
|
|
|