mirror of
https://git.asonix.dog/ceralor/mastodon.git
synced 2025-10-13 05:44:48 +00: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');
|
|
};
|