web-social-share
Version:
A Web Component to share urls and text on social networks
11 lines (10 loc) • 338 B
JavaScript
export const copy = async (attrs) => {
var _a;
try {
await navigator.clipboard.writeText((_a = attrs.socialShareUrl) !== null && _a !== void 0 ? _a : window.location.href);
}
catch (err) {
console.error('Well it seems that copy is not supported by this browser');
}
};
//# sourceMappingURL=copy.js.map