1.0.3 • Published 4 years ago
you-clipboard v1.0.3
You-clipboard
This module can help you to easily copy text to the clipboard.
It supports both JS and TS.
example:
import execCopy from "you-clipboard";
execCopy("Hello, World!");
// you can also bind it with a callback
execCopy("Hello, World!", () => {
alert("Copied successfully!");
});