blob: f0fea1a0e5ee4f167b7b6bc3757793a7e126c775 (
plain) (
blame)
1
2
3
4
5
6
7
|
const urlPlaceholder = 'xxxxxxxxxxxxxxxxxxxxxxx';
export function countableText(inputText) {
return inputText
.replace(/https?:\/\/\S+/g, urlPlaceholder)
.replace(/(?:^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9\.\-]+)/ig, '@$2');
};
|