UNPKG

class-validator-multi-lang

Version:
33 lines 1.36 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.IsBooleanString = exports.isBooleanString = exports.IS_BOOLEAN_STRING = void 0; const ValidateBy_1 = require("../common/ValidateBy"); const isBoolean_1 = __importDefault(require("validator/lib/isBoolean")); const get_text_1 = require("../get-text"); exports.IS_BOOLEAN_STRING = 'isBooleanString'; /** * Checks if a string is a boolean. * If given value is not a string, then it returns false. */ function isBooleanString(value) { return typeof value === 'string' && isBoolean_1.default(value); } exports.isBooleanString = isBooleanString; /** * Checks if a string is a boolean. * If given value is not a string, then it returns false. */ function IsBooleanString(validationOptions) { return ValidateBy_1.ValidateBy({ name: exports.IS_BOOLEAN_STRING, validator: { validate: (value, args) => isBooleanString(value), defaultMessage: ValidateBy_1.buildMessage(eachPrefix => eachPrefix + get_text_1.getText('$property must be a boolean string'), validationOptions), }, }, validationOptions); } exports.IsBooleanString = IsBooleanString; //# sourceMappingURL=IsBooleanString.js.map