fix(isMobilePhone): add missing Uzbekistan (uz-UZ) mobile carrier prefixes#2688
Open
mahmoodhamdi wants to merge 1 commit intovalidatorjs:masterfrom
Open
fix(isMobilePhone): add missing Uzbekistan (uz-UZ) mobile carrier prefixes#2688mahmoodhamdi wants to merge 1 commit intovalidatorjs:masterfrom
mahmoodhamdi wants to merge 1 commit intovalidatorjs:masterfrom
Conversation
…fixes Add prefixes for Humans (33), Ucell (50), Uzmobile (77), Perfectum Mobile (80), and MOBIUZ (87) based on the Uzbekistan Golden Pages directory (goldenpages.uz/en/cellular) and the ITU numbering plan. Fixes validatorjs#2683
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #2688 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 114 114
Lines 2595 2595
Branches 659 659
=========================================
Hits 2595 2595 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
rubiin
approved these changes
Mar 15, 2026
Author
|
Thanks for the review and approval, @rubiin! Appreciate your time. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #2683
The
uz-UZregex was missing several active mobile carrier prefixes. Valid Uzbekistan phone numbers using these prefixes were incorrectly rejected.Added prefixes:
Also expanded the
7xrange from7[1-69]to7[1-9]to include 77 and 78.References:
Changes:
src/lib/isMobilePhone.js: Updated regex from(6[125-79]|7[1-69]|88|9\d)to(33|50|6[125-79]|7[1-9]|8[078]|9\d)test/validators.test.js: Added valid test cases for all new prefixes, removed870123456from invalid list (now correctly valid as MOBIUZ prefix)All 317 tests pass.