import { ValidationOptions } from "../ValidationOptions"; import { buildMessage, ValidateBy } from "../common/ValidateBy"; import validator from "validator"; export const IS_FULL_WIDTH = "isFullWidth"; /** * Checks if the string contains any full-width chars. * If given value is not a string, then it returns false. */ export function isFullWidth(value: unknown): boolean { return typeof value === "string" && validator.isFullWidth(value); } /** * Checks if the string contains any full-width chars. * If given value is not a string, then it returns false. */ export function IsFullWidth(validationOptions?: ValidationOptions): PropertyDecorator { return ValidateBy( { name: IS_FULL_WIDTH, validator: { validate: (value, args): boolean => isFullWidth(value), defaultMessage: buildMessage( (eachPrefix) => eachPrefix + "$property must contain a full-width characters", validationOptions ) } }, validationOptions ); }