1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| import { buildMessage, ValidateBy } from '../common/ValidateBy';
| import isIdentityCardValidator from 'validator/lib/isIdentityCard';
| export var IS_IDENTITY_CARD = 'isIdentityCard';
| /**
| * Check if the string is a valid identity card code.
| * locale is one of ['ES', 'zh-TW', 'he-IL', 'ar-TN'] OR 'any'. If 'any' is used, function will check if any of the locals match.
| * Defaults to 'any'.
| * If given value is not a string, then it returns false.
| */
| export function isIdentityCard(value, locale) {
| return typeof value === 'string' && isIdentityCardValidator(value, locale);
| }
| /**
| * Check if the string is a valid identity card code.
| * locale is one of ['ES', 'zh-TW', 'he-IL', 'ar-TN'] OR 'any'. If 'any' is used, function will check if any of the locals match.
| * Defaults to 'any'.
| * If given value is not a string, then it returns false.
| */
| export function IsIdentityCard(locale, validationOptions) {
| return ValidateBy({
| name: IS_IDENTITY_CARD,
| constraints: [locale],
| validator: {
| validate: function (value, args) { return isIdentityCard(value, args === null || args === void 0 ? void 0 : args.constraints[0]); },
| defaultMessage: buildMessage(function (eachPrefix) { return eachPrefix + '$property must be a identity card number'; }, validationOptions),
| },
| }, validationOptions);
| }
| //# sourceMappingURL=IsIdentityCard.js.map
|
|