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) 219 B
import { handleError as t } from "./handle-error.mjs"; const o = async (r) => { try { await navigator.clipboard.writeText(r); } catch { t("Failed to copy to clipboard"); } }; export { o as clipMaster };