UNPKG

@estarlincito/utils

Version:

A collection of utility functions designed to simplify and speed up development tasks in JavaScript and TypeScript projects.

12 lines (11 loc) 222 B
import { throwAppError as t } from "./error-handling.js"; const a = async (r) => { try { await navigator.clipboard.writeText(r); } catch { t("Failed to copy to clipboard"); } }; export { a as clipMaster };