UNPKG

class-validator-multi-lang

Version:
34 lines 1.5 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.IsAlphanumeric = exports.isAlphanumeric = exports.IS_ALPHANUMERIC = void 0; const ValidateBy_1 = require("../common/ValidateBy"); const isAlphanumeric_1 = __importDefault(require("validator/lib/isAlphanumeric")); const get_text_1 = require("../get-text"); exports.IS_ALPHANUMERIC = 'isAlphanumeric'; /** * Checks if the string contains only letters and numbers. * If given value is not a string, then it returns false. */ function isAlphanumeric(value, locale) { return typeof value === 'string' && isAlphanumeric_1.default(value, locale); } exports.isAlphanumeric = isAlphanumeric; /** * Checks if the string contains only letters and numbers. * If given value is not a string, then it returns false. */ function IsAlphanumeric(locale, validationOptions) { return ValidateBy_1.ValidateBy({ name: exports.IS_ALPHANUMERIC, constraints: [locale], validator: { validate: (value, args) => isAlphanumeric(value, args.constraints[0]), defaultMessage: ValidateBy_1.buildMessage(eachPrefix => eachPrefix + get_text_1.getText('$property must contain only letters and numbers'), validationOptions), }, }, validationOptions); } exports.IsAlphanumeric = IsAlphanumeric; //# sourceMappingURL=IsAlphanumeric.js.map