UNPKG

web-social-share

Version:

A Web Component to share urls and text on social networks

9 lines (8 loc) 240 B
export const copy = async (attrs) => { try { await navigator.clipboard.writeText(attrs.socialShareUrl || window.location.href); } catch (err) { console.error('Well it seems that copy is not supported by this browser'); } };