mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 10:58:06 +01:00
7 lines
233 B
JavaScript
7 lines
233 B
JavaScript
const urlPlaceholder = 'xxxxxxxxxxxxxxxxxxxxxxx';
|
|
|
|
export function countableText(inputText) {
|
|
return inputText
|
|
.replace(/https?:\/\/\S+/g, urlPlaceholder)
|
|
.replace(/(?:^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9\.\-]+)/ig, '@$2');
|
|
};
|