UNPKG

class-validator

Version:

Decorator-based property validation for classes.

24 lines 956 B
import { buildMessage, ValidateBy } from '../common/ValidateBy'; import isHalfWidthValidator from 'validator/lib/isHalfWidth'; export var IS_HALF_WIDTH = 'isHalfWidth'; /** * Checks if the string contains any half-width chars. * If given value is not a string, then it returns false. */ export function isHalfWidth(value) { return typeof value === 'string' && isHalfWidthValidator(value); } /** * Checks if the string contains any full-width chars. * If given value is not a string, then it returns false. */ export function IsHalfWidth(validationOptions) { return ValidateBy({ name: IS_HALF_WIDTH, validator: { validate: function (value, args) { return isHalfWidth(value); }, defaultMessage: buildMessage(function (eachPrefix) { return eachPrefix + '$property must contain a half-width characters'; }, validationOptions), }, }, validationOptions); } //# sourceMappingURL=IsHalfWidth.js.map