How to use the ngx-custom-validators.CustomValidators.lt function in ngx-custom-validators

To help you get started, we’ve selected a few ngx-custom-validators examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github NarikMe / narik-angular / projects / narik-core / src / lib / services / narik-validation.service.ts View on Github external
func: CustomValidators.equalTo,
      params: ["equalTo"]
    },
    gt: {
      func: CustomValidators.gt,
      params: ["gt"]
    },
    gte: {
      func: CustomValidators.gte,
      params: ["gte"]
    },
    json: {
      func: CustomValidators.json
    },
    lt: {
      func: CustomValidators.lt,
      params: ["lt"]
    },
    lte: {
      func: CustomValidators.lte,
      params: ["lte"]
    },
    maxDate: {
      func: CustomValidators.maxDate,
      params: ["maxDate"]
    },
    minDate: {
      func: CustomValidators.minDate,
      params: ["minDate"]
    },
    notEqual: {
      func: CustomValidators.notEqual,