2019-08-01 01:33:49 +08: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-06-15 23:03:24 +08:00
|
|
|
);
|
2019-08-01 01:33:49 +08:00
|
|
|
});
|
2017-06-09 06:02:30 +08:00
|
|
|
|
2019-08-01 01:33:49 +08:00
|
|
|
return text;
|
|
|
|
};
|
2016-06-15 02:31:51 +08:00
|
|
|
}
|
2016-11-09 05:36:34 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
return function(t) {
|
|
|
|
return t;
|
|
|
|
};
|
2017-06-09 06:02:30 +08:00
|
|
|
}
|
|
|
|
|
2019-08-01 01:33:49 +08:00
|
|
|
export function censor(text, censoredRegexp, replacementLetter) {
|
|
|
|
return censorFn(censoredRegexp, replacementLetter)(text);
|
2016-06-15 02:31:51 +08:00
|
|
|
}
|