mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 11:53:44 +08:00
13 lines
480 B
JavaScript
13 lines
480 B
JavaScript
import Controller from "@ember/controller";
|
|
import { default as computed } from "ember-addons/ember-computed-decorators";
|
|
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
|
|
|
export default Controller.extend(ModalFunctionality, {
|
|
@computed("value", "model.compiledRegularExpression")
|
|
matches(value, regexpString) {
|
|
if (!value || !regexpString) return;
|
|
let censorRegexp = new RegExp(regexpString, "ig");
|
|
return value.match(censorRegexp);
|
|
}
|
|
});
|