UNPKG

class-validator-multi-lang

Version:
34 lines 1.53 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.IsByteLength = exports.isByteLength = exports.IS_BYTE_LENGTH = void 0; const ValidateBy_1 = require("../common/ValidateBy"); const isByteLength_1 = __importDefault(require("validator/lib/isByteLength")); const get_text_1 = require("../get-text"); exports.IS_BYTE_LENGTH = 'isByteLength'; /** * Checks if the string's length (in bytes) falls in a range. * If given value is not a string, then it returns false. */ function isByteLength(value, min, max) { return typeof value === 'string' && isByteLength_1.default(value, { min, max }); } exports.isByteLength = isByteLength; /** * Checks if the string's length (in bytes) falls in a range. * If given value is not a string, then it returns false. */ function IsByteLength(min, max, validationOptions) { return ValidateBy_1.ValidateBy({ name: exports.IS_BYTE_LENGTH, constraints: [min, max], validator: { validate: (value, args) => isByteLength(value, args.constraints[0], args.constraints[1]), defaultMessage: ValidateBy_1.buildMessage(eachPrefix => eachPrefix + get_text_1.getText("$property's byte length must fall into ($constraint1, $constraint2) range"), validationOptions), }, }, validationOptions); } exports.IsByteLength = IsByteLength; //# sourceMappingURL=IsByteLength.js.map