UNPKG

class-validator-multi-lang

Version:
34 lines 1.39 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.IsFQDN = exports.isFQDN = exports.IS_FQDN = void 0; const ValidateBy_1 = require("../common/ValidateBy"); const isFQDN_1 = __importDefault(require("validator/lib/isFQDN")); const get_text_1 = require("../get-text"); exports.IS_FQDN = 'isFqdn'; /** * Checks if the string is a fully qualified domain name (e.g. domain.com). * If given value is not a string, then it returns false. */ function isFQDN(value, options) { return typeof value === 'string' && isFQDN_1.default(value, options); } exports.isFQDN = isFQDN; /** * Checks if the string is a fully qualified domain name (e.g. domain.com). * If given value is not a string, then it returns false. */ function IsFQDN(options, validationOptions) { return ValidateBy_1.ValidateBy({ name: exports.IS_FQDN, constraints: [options], validator: { validate: (value, args) => isFQDN(value, args.constraints[0]), defaultMessage: ValidateBy_1.buildMessage(eachPrefix => eachPrefix + get_text_1.getText('$property must be a valid domain name'), validationOptions), }, }, validationOptions); } exports.IsFQDN = IsFQDN; //# sourceMappingURL=IsFQDN.js.map