Skip to content

Commit 189fe05

Browse files
committed
1 parent 13651ea commit 189fe05

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Validator | Description
159159
**isURL(str [, options])** | check if the string is an URL.<br/><br/>`options` is an object which defaults to `{ protocols: ['http','https','ftp'], require_tld: true, require_protocol: false, require_host: true, require_port: false, require_valid_protocol: true, allow_underscores: false, host_whitelist: false, host_blacklist: false, allow_trailing_dot: false, allow_protocol_relative_urls: false, allow_fragments: true, allow_query_components: true, disallow_auth: false, validate_length: true }`.<br/><br/>require_protocol - if set as true isURL will return false if protocol is not present in the URL.<br/>require_valid_protocol - isURL will check if the URL's protocol is present in the protocols option.<br/>protocols - valid protocols can be modified with this option.<br/>require_host - if set as false isURL will not check if host is present in the URL.<br/>require_port - if set as true isURL will check if port is present in the URL.<br/>allow_protocol_relative_urls - if set as true protocol relative URLs will be allowed.<br/>allow_fragments - if set as false isURL will return false if fragments are present.<br/>allow_query_components - if set as false isURL will return false if query components are present.<br/>validate_length - if set as false isURL will skip string length validation (2083 characters is IE max URL length).
160160
**isUUID(str [, version])** | check if the string is a UUID (version 3, 4 or 5).
161161
**isVariableWidth(str)** | check if the string contains a mixture of full and half-width chars.
162-
**isVAT(str, countryCode)** | checks that the string is a [valid VAT number](https://en.wikipedia.org/wiki/VAT_identification_number) if validation is available for the given country code matching [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). <br/><br/>Available country codes: `[ 'GB', 'IT' ]`.
162+
**isVAT(str, countryCode)** | checks that the string is a [valid VAT number](https://en.wikipedia.org/wiki/VAT_identification_number) if validation is available for the given country code matching [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). <br/><br/>Available country codes: `[ 'GB', 'IT','NL' ]`.
163163
**isWhitelisted(str, chars)** | checks characters if they appear in the whitelist.
164164
**matches(str, pattern [, modifiers])** | check if string matches the pattern.<br/><br/>Either `matches('foo', /foo/i)` or `matches('foo', 'foo', 'i')`.
165165

src/lib/isVAT.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import assertString from './util/assertString';
33
export const vatMatchers = {
44
GB: /^GB((\d{3} \d{4} ([0-8][0-9]|9[0-6]))|(\d{9} \d{3})|(((GD[0-4])|(HA[5-9]))[0-9]{2}))$/,
55
IT: /^(IT)?[0-9]{11}$/,
6+
NL: /^(NL)?[0-9]{9}B[0-9]{2}$/,
67
};
78

89
export default function isVAT(str, countryCode) {

test/validators.js

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11015,7 +11015,7 @@ describe('Validators', () => {
1101511015
],
1101611016
});
1101711017
});
11018-
it('should validate english VAT numbers', () => {
11018+
it('should validate VAT numbers', () => {
1101911019
test({
1102011020
validator: 'isVAT',
1102111021
args: ['GB'],
@@ -11045,7 +11045,6 @@ describe('Validators', () => {
1104511045
'GBHA499',
1104611046
],
1104711047
});
11048-
1104911048
test({
1105011049
validator: 'isVAT',
1105111050
args: ['IT'],
@@ -11061,7 +11060,21 @@ describe('Validators', () => {
1106111060
'IT123456789',
1106211061
],
1106311062
});
11064-
11063+
test({
11064+
validator: 'isVAT',
11065+
args: ['NL'],
11066+
valid: [
11067+
'NL123456789B10',
11068+
'123456789B10',
11069+
],
11070+
invalid: [
11071+
'NL12345678 910',
11072+
'NL 123456789101',
11073+
'NL123456789B1',
11074+
'GB12345678910',
11075+
'NL123456789',
11076+
],
11077+
});
1106511078
test({
1106611079
validator: 'isVAT',
1106711080
args: ['invalidCountryCode'],

0 commit comments

Comments
 (0)