1import { Regex } from "@hey/data/regex"; 2 3const getURLs = (text: string): string[] => { 4 if (!text) { 5 return []; 6 } 7 return text.match(Regex.url) || []; 8}; 9 10export default getURLs;