2019-07-31 13:33:49 -04:00
|
|
|
export function censorFn(regexpString, replacementLetter) {
|
|
|
|
if (regexpString) {
|
|
|
|
let censorRegexp = new RegExp(regexpString, "ig");
|
|
|
|
replacementLetter = replacementLetter || "■";
|
|
|
|
|
|
|
|
return function (text) {
|
|
|
|
text = text.replace(censorRegexp, (fullMatch, ...groupMatches) => {
|
|
|
|
const stringMatch = groupMatches.find((g) => typeof g === "string");
|
|
|
|
return fullMatch.replace(
|
|
|
|
stringMatch,
|
|
|
|
new Array(stringMatch.length + 1).join(replacementLetter)
|
2018-01-10 14:11:14 -05:00
|
|
|
);
|
2019-07-31 13:33:49 -04:00
|
|
|
});
|
2017-06-08 18:02:30 -04:00
|
|
|
|
2019-07-31 13:33:49 -04:00
|
|
|
return text;
|
|
|
|
};
|
2016-06-14 14:31:51 -04:00
|
|
|
}
|
2016-11-08 16:36:34 -05:00
|
|
|
|
2017-06-08 18:02:30 -04:00
|
|
|
return function (t) {
|
|
|
|
return t;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-07-31 13:33:49 -04:00
|
|
|
export function censor(text, censoredRegexp, replacementLetter) {
|
|
|
|
return censorFn(censoredRegexp, replacementLetter)(text);
|
2016-06-14 14:31:51 -04:00
|
|
|
}
|