UNPKG

@creit.tech/stellar-wallets-kit

Version:
10 lines (8 loc) 272 B
async function copyToClipboard(textToCopy) { if (!textToCopy) { throw new Error(`Text to copy to the clipboard can't be undefined`); } await navigator.clipboard.writeText(textToCopy); } export { copyToClipboard }; //# sourceMappingURL=clipboard.service.mjs.map