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
30
31
32
33
34
35
36
37
38
39
40
41
| "use strict";
| var __importDefault = (this && this.__importDefault) || function (mod) {
| return (mod && mod.__esModule) ? mod : { "default": mod };
| };
| Object.defineProperty(exports, "__esModule", { value: true });
| exports.IsTaxId = exports.isTaxId = exports.IS_TAX_ID = void 0;
| const ValidateBy_1 = require("../common/ValidateBy");
| const isTaxID_1 = __importDefault(require("validator/lib/isTaxID"));
| exports.IS_TAX_ID = 'isTaxId';
| /**
| * Checks if the string is a valid tax ID. Default locale is `en-US`.
| * If given value is not a string, then it returns false.
| *
| * Supported locales: bg-BG, cs-CZ, de-AT, de-DE, dk-DK, el-CY, el-GR, en-CA,
| * en-IE, en-US, es-ES, et-EE, fi-FI, fr-BE, fr-FR, fr-LU, hr-HR, hu-HU, it-IT,
| * lv-LV, mt-MT, nl-NL, pl-PL, pt-BR, pt-PT, ro-RO, sk-SK, sl-SI, sv-SE.
| */
| function isTaxId(value, locale) {
| return typeof value === 'string' && (0, isTaxID_1.default)(value, locale || 'en-US');
| }
| exports.isTaxId = isTaxId;
| /**
| * Checks if the string is a valid tax ID. Default locale is `en-US`.
| * If given value is not a string, then it returns false.
| *
| * Supported locales: bg-BG, cs-CZ, de-AT, de-DE, dk-DK, el-CY, el-GR, en-CA,
| * en-IE, en-US, es-ES, et-EE, fi-FI, fr-BE, fr-FR, fr-LU, hr-HR, hu-HU, it-IT,
| * lv-LV, mt-MT, nl-NL, pl-PL, pt-BR, pt-PT, ro-RO, sk-SK, sl-SI, sv-SE.
| */
| function IsTaxId(locale, validationOptions) {
| return (0, ValidateBy_1.ValidateBy)({
| name: exports.IS_TAX_ID,
| constraints: [locale],
| validator: {
| validate: (value, args) => isTaxId(value, args === null || args === void 0 ? void 0 : args.constraints[0]),
| defaultMessage: (0, ValidateBy_1.buildMessage)(eachPrefix => eachPrefix + '$property must be a Tax Identification Number', validationOptions),
| },
| }, validationOptions);
| }
| exports.IsTaxId = IsTaxId;
| //# sourceMappingURL=is-tax-id.js.map
|
|