/** * FormValidation (https://formvalidation.io) * The best validation library for JavaScript * (c) 2013 - 2020 Nguyen Huu Phuoc */ import { Localization, ValidateInput, ValidateOptions, ValidateResult } from '../core/Core'; /** * This validator always returns valid. * It can be used when we want to show the custom message returned from server */ export default function blank() { return { validate(input: ValidateInput): ValidateResult { return { valid: true }; }, }; }