UNPKG

@dooboostore/dom-render

Version:
11 lines 431 B
import { ValidatorArray } from './ValidatorArray'; export class ValidValidatorArray extends ValidatorArray { constructor(validCallBack, value, target, event, autoValid = true) { super(value, target, event, autoValid); this.validCallBack = validCallBack; } valid() { return this.validCallBack(this.value, this.getTarget(), this.getEvent()); } } //# sourceMappingURL=ValidValidatorArray.js.map