Skip to content

Commit

Permalink
en-IN and all india locale support for isLicensePlate
Browse files Browse the repository at this point in the history
  • Loading branch information
NishantJS committed Mar 22, 2022
1 parent c1b21a9 commit a51103c
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ Validator | Description
**isJWT(str)** | check if the string is valid JWT token.
**isLatLong(str [, options])** | check if the string is a valid latitude-longitude coordinate in the format `lat,long` or `lat, long`.<br/><br/>`options` is an object that defaults to `{ checkDMS: false }`. Pass `checkDMS` as `true` to validate DMS(degrees, minutes, and seconds) latitude-longitude format.
**isLength(str [, options])** | check if the string's length falls in a range.<br/><br/>`options` is an object which defaults to `{min:0, max: undefined}`. Note: this function takes into account surrogate pairs.
**isLicensePlate(str [, locale])** | check if string matches the format of a country's license plate.<br/><br/>(locale is one of `['cs-CZ', 'de-DE', 'de-LI', 'fi-FI', 'pt-BR', 'pt-PT', 'sq-AL', 'sv-SE']` or `any`)
**isLicensePlate(str [, locale])** | check if string matches the format of a country's license plate.<br/><br/>(locale is one of `['cs-CZ', 'de-DE', 'de-LI', 'fi-FI', 'pt-BR', 'pt-PT', 'sq-AL', 'sv-SE', 'en-IN', 'hi-IN', 'gu-IN', 'as-IN', 'bn-IN', 'kn-IN', 'ml-IN', 'mr-IN', 'or-IN', 'pa-IN', 'sa-IN', 'ta-IN', 'te-IN', 'kok-IN']` or `any`)
**isLocale(str)** | check if the string is a locale
**isLowercase(str)** | check if the string is lowercase.
**isMACAddress(str [, options])** | check if the string is a MAC address.<br/><br/>`options` is an object which defaults to `{no_separators: false}`. If `no_separators` is true, the validator will allow MAC addresses without separators. Also, it allows the use of hyphens, spaces or dots e.g '01 02 03 04 05 ab', '01-02-03-04-05-ab' or '0102.0304.05ab'. The options also allow a `eui` property to specify if it needs to be validated against EUI-48 or EUI-64. The accepted values of `eui` are: 48, 64.
Expand Down
15 changes: 15 additions & 0 deletions src/lib/isLicensePlate.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,23 @@ const validators = {
/^[A-Z]{3}[ -]?[0-9][A-Z][0-9]{2}|[A-Z]{3}[ -]?[0-9]{4}$/.test(str),
'sv-SE': str =>
/^[A-HJ-PR-UW-Z]{3} ?[\d]{2}[A-HJ-PR-UW-Z1-9]$|(^[A-ZÅÄÖ ]{2,7}$)/.test(str.trim()),
'en-IN': str => /^[A-Z]{2}[ -]?[0-9]{1,2}(?:[ -]?[A-Z])(?:[ -]?[A-Z]*)?[ -]?[0-9]{4}$/.test(str),
};

validators['hi-IN'] = validators['en-IN'];
validators['gu-IN'] = validators['en-IN'];
validators['as-IN'] = validators['en-IN'];
validators['bn-IN'] = validators['en-IN'];
validators['kn-IN'] = validators['en-IN'];
validators['ml-IN'] = validators['en-IN'];
validators['mr-IN'] = validators['en-IN'];
validators['or-IN'] = validators['en-IN'];
validators['pa-IN'] = validators['en-IN'];
validators['sa-IN'] = validators['en-IN'];
validators['ta-IN'] = validators['en-IN'];
validators['te-IN'] = validators['en-IN'];
validators['kok-IN'] = validators['en-IN'];

export default function isLicensePlate(str, locale) {
assertString(str);
if (locale in validators) {
Expand Down
14 changes: 14 additions & 0 deletions test/validators.js
Original file line number Diff line number Diff line change
Expand Up @@ -11864,6 +11864,20 @@ describe('Validators', () => {
'ABC-123',
],
});
test({
validator: 'isLicensePlate',
args: ['en-IN'],
valid: [
'MH 04 AD 0001',
'HR26DQ0001',
'WB-04-ZU-2001',
'KL 18 X 5800',
'DL 4 CAF 4856',
'KA-41CE-5289',
'GJ 04-AD 5822',
],
invalid: ['mh04ad0045', 'invalidlicenseplate', '4578', '', 'GJ054GH4785'],
});
});
it('should validate VAT numbers', () => {
test({
Expand Down

0 comments on commit a51103c

Please sign in to comment.