UNPKG

next

Version:

The React Framework

10 lines (9 loc) 341 B
export function parseUrlFromText(text, matcherFunc) { const linkRegex = /https?:\/\/[^\s/$.?#].[^\s)'"]*/gi; const links = Array.from(text.matchAll(linkRegex), (match)=>match[0]); if (matcherFunc) { return links.filter((link)=>matcherFunc(link)); } return links; } //# sourceMappingURL=parse-url-from-text.js.map