class-validator-multi-lang
Version:
Decorator-based property validation for classes.
35 lines • 1.4 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.IsISBN = exports.isISBN = exports.IS_ISBN = void 0;
const ValidateBy_1 = require("../common/ValidateBy");
const isISBN_1 = __importDefault(require("validator/lib/isISBN"));
const get_text_1 = require("../get-text");
exports.IS_ISBN = 'isIsbn';
/**
* Checks if the string is an ISBN (version 10 or 13).
* If given value is not a string, then it returns false.
*/
function isISBN(value, version) {
const versionStr = version ? `${version}` : undefined;
return typeof value === 'string' && isISBN_1.default(value, versionStr);
}
exports.isISBN = isISBN;
/**
* Checks if the string is an ISBN (version 10 or 13).
* If given value is not a string, then it returns false.
*/
function IsISBN(version, validationOptions) {
return ValidateBy_1.ValidateBy({
name: exports.IS_ISBN,
constraints: [version],
validator: {
validate: (value, args) => isISBN(value, args.constraints[0]),
defaultMessage: ValidateBy_1.buildMessage(eachPrefix => eachPrefix + get_text_1.getText('$property must be an ISBN'), validationOptions),
},
}, validationOptions);
}
exports.IsISBN = IsISBN;
//# sourceMappingURL=IsISBN.js.map