This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-09-16 06:01:15 -07:00
|
|
|
import { urlRegex } from './url_regex';
|
|
|
|
|
2017-07-28 15:06:29 -07:00
|
|
|
const urlPlaceholder = 'xxxxxxxxxxxxxxxxxxxxxxx';
|
|
|
|
|
|
|
|
export function countableText(inputText) {
|
|
|
|
return inputText
|
2017-09-16 06:01:15 -07:00
|
|
|
.replace(urlRegex, urlPlaceholder)
|
2017-11-07 10:08:14 -08:00
|
|
|
.replace(/(^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9\.\-]+[a-z0-9]+)/ig, '$1@$3');
|
2017-07-28 15:06:29 -07:00
|
|
|
};
|