'use strict';
asyncfunctioncopyToClipboard(textToCopy) {
if (!textToCopy) {
thrownewError(`Text to copy to the clipboard can't be undefined`);
}
await navigator.clipboard.writeText(textToCopy);
}
exports.copyToClipboard = copyToClipboard;
//# sourceMappingURL=clipboard.service.cjs.map