UNPKG

web-social-share

Version:

A Web Component to share urls and text on social networks

9 lines (8 loc) 339 B
import { shareEncodedUrl, staticOpenNewWindow } from './utils'; export const telegram = async (attrs) => { let urlString = `https://t.me/share/url?url=${shareEncodedUrl(attrs.socialShareUrl)}`; if (attrs.socialShareText) { urlString += `&text=${encodeURIComponent(attrs.socialShareText)}`; } staticOpenNewWindow(urlString); };