constructor()

in src/rules.js [82:90]


	constructor(config, pathsToTreeMap, formValues, registeredRuleCondtions) {
		this.config = config;
		this.pathsToTreeMap = pathsToTreeMap;
		this.formValues = formValues;
		this.registeredRuleCondtions = {
			[conditionTypes.EQUALITY]: equal,
			...registeredRuleCondtions,
		};
	}