This commit is contained in:
Kevin R
2020-08-20 04:01:58 +02:00
parent 4d4a418a95
commit 4432fb46bf
13 changed files with 420 additions and 26 deletions

11
source/rules/rule.ts Normal file
View File

@@ -0,0 +1,11 @@
export default class Rule {
private _rule: RegExp
constructor(rule: RegExp) {
this._rule = rule
}
get value() : RegExp {
return this._rule
}
}