Files
Sheep-Service/web/lib/components/clipboard.js
2025-03-31 00:22:21 +03:00

5 lines
170 B
JavaScript

clipboard = (text) => {
navigator.clipboard.writeText(text)
.then(() => console.log("Текст скопійовано!"))
.catch(err => console.error(err))
}