Copy import e from "validator";
await e.string(
{} // Optionally pass options
)
.validate("foo") // returns "foo"
Copy interface IStringValidatorOptions extends TBaseValidatorOptions {
/** Pass custom messages for the errors */
messages?: Partial<
Record<
| "typeError"
| "smallerLength"
| "greaterLength"
| "matchFailed"
| "invalidChoice"
| "numberLike"
| "notNumberLike"
| "invalidURL",
TErrorMessage
>
>;
/** Validate string as URL */
isUrl?: boolean;
/** Transform string to URL object. (isUrl option is required) */
returnURLInstance?: boolean;
/** Validate string minimum length */
minLength?: number;
/** Validate string maximum length */
maxLength?: number;
/** Pass a string enum */
choices?: string[];
/** Pass a list of acceptable regular expressions */
patterns?: RegExp[];
/** Validate if string isNaN */
isNaN?: boolean;
}
Copy .length(options: { min?: number; max?: number } | number)
Copy .matches(options: { regex: RegExp | RegExp[] } | RegExp | RegExp[])
Copy .in<C extends string>(choices: C[])
Copy .isURL<URLInstance extends boolean = false>(
returnURLInstance?: URLInstance
)
Case 1 (Using validator options)
Copy // Cast number to string
await e.string({ cast: true }).validate(1) // returns "1"
// Alternatively you can do this (Using a utility validator)
await e.cast(e.string()).validate(1) // returns "1"
Case 2 (Using validator methods)
Copy // Validate Email
await e.string({
messages: {
matchFailed: "Invalid email!"
}
})
.matches(/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,63})$/)
.validate("test@mail.com") // returns "test@mail.com"
Copy // Validate string with particular length
await e.string().length({ min: 3, max: 10 })
.validate("food") // returns "food"
await e.string().length({ min: 3, max: 10 })
.validate("") // throws ValidationException