fxtwitter-docker/src/linkFixer.ts
2022-07-26 01:46:43 -04:00

12 lines
382 B
TypeScript

export const linkFixer = (tweet: TweetPartial, text: string): string => {
// Replace t.co links with their full counterparts
if (typeof tweet.entities?.urls !== 'undefined') {
tweet.entities?.urls.forEach((url: TcoExpansion) => {
text = text.replace(url.url, url.expanded_url);
});
text = text.replace(/ ?https:\/\/t\.co\/\w{10}/, '');
}
return text;
};