export async function $copy(value: string | number) { try { await navigator.clipboard.writeText(value.toString()) } catch {} }