@cloudcome/utils-browser
Version:
cloudcome utils for browser
17 lines (16 loc) • 427 B
JavaScript
function copyText(text) {
const textArea = document.createElement("textarea");
textArea.value = text;
textArea.style.position = "fixed";
textArea.style.left = "-9999px";
textArea.style.top = "-9999px";
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
document.execCommand("copy");
document.body.removeChild(textArea);
}
export {
copyText
};
//# sourceMappingURL=clipboard.mjs.map