Skip to content

Commit

Permalink
Merge pull request #439 from tormaroe/norwegian-phone-numbers
Browse files Browse the repository at this point in the history
Norwegian phone numbers
  • Loading branch information
chriso committed Oct 8, 2015
2 parents a5d3874 + bc6be2e commit 427806e
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ $ bower install validator-js
- **isJSON(str)** - check if the string is valid JSON (note: uses JSON.parse).
- **isLength(str, min [, max])** - check if the string's length falls in a range. Note: this function takes into account surrogate pairs.
- **isLowercase(str)** - check if the string is lowercase.
- **isMobilePhone(str, locale)** - check if the string is a mobile phone number, (locale is one of `['zh-CN', 'zh-TW', 'en-ZA', 'en-AU', 'en-HK', 'pt-PT', 'fr-FR', 'el-GR', 'en-GB', 'en-US', 'en-ZM', 'ru-RU']`).
- **isMobilePhone(str, locale)** - check if the string is a mobile phone number, (locale is one of `['zh-CN', 'zh-TW', 'en-ZA', 'en-AU', 'en-HK', 'pt-PT', 'fr-FR', 'el-GR', 'en-GB', 'en-US', 'en-ZM', 'ru-RU', 'nb-NO', 'nn-NO']`).
- **isMongoId(str)** - check if the string is a valid hex-encoded representation of a [MongoDB ObjectId][mongoid].
- **isMultibyte(str)** - check if the string contains one or more multibyte chars.
- **isNull(str)** - check if the string is null.
Expand Down
32 changes: 32 additions & 0 deletions test/validators.js
Original file line number Diff line number Diff line change
Expand Up @@ -1519,6 +1519,38 @@ describe('Validators', function () {
],
args: ['ru-RU']
});

var norwegian = {
valid: [
'+4796338855'
, '+4746338855'
, '4796338855'
, '4746338855'
, '46338855'
, '96338855'
]
, invalid: [
'12345'
, ''
, 'Vml2YW11cyBmZXJtZtesting123'
, '+4676338855'
, '19676338855'
, '+4726338855'
, '4736338855'
, '66338855'
]};
test({
validator: 'isMobilePhone'
, valid: norwegian.valid
, invalid: norwegian.invalid,
args: ['nb-NO']
});
test({
validator: 'isMobilePhone'
, valid: norwegian.valid
, invalid: norwegian.invalid,
args: ['nn-NO']
});
});

it('should validate currency', function() {
Expand Down
4 changes: 3 additions & 1 deletion validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@
'en-GB': /^(\+?44|0)7\d{9}$/,
'en-US': /^(\+?1)?[2-9]\d{2}[2-9](?!11)\d{6}$/,
'en-ZM': /^(\+26)?09[567]\d{7}$/,
'ru-RU': /^(\+?7|8)?9\d{9}$/
'ru-RU': /^(\+?7|8)?9\d{9}$/,
'nb-NO': /^(\+?47)?[49]\d{7}$/,
'nn-NO': /^(\+?47)?[49]\d{7}$/
};

// from http://goo.gl/0ejHHW
Expand Down

0 comments on commit 427806e

Please sign in to comment.