Merge pull request #90 from Neur0toxine/add-us-phone-test

recognize 1(771) as US phone code
This commit is contained in:
Pavel 2025-02-25 09:47:52 +03:00 committed by GitHub
commit c3efefb33d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -31,7 +31,7 @@ var (
ErrCannotParsePhone = errors.New("cannot parse phone number")
TrimmedPhoneRegexp = regexp.MustCompile(`\D+`)
UndefinedUSCodes = []string{"1445", "1945", "1840", "1448", "1279", "1839", "1555"}
UndefinedUSCodes = []string{"1445", "1945", "1840", "1448", "1279", "1839", "1555", "1771"}
)
// FormatNumberForWA forms in the format according to the rules https://faq.whatsapp.com/1294841057948784

View file

@ -125,6 +125,7 @@ func TestFormatNumberForWA(t *testing.T) {
"19452381431": "+19452381431",
"12793006305": "+12793006305",
"15557043340": "+15557043340",
"17712015566": "+17712015566",
}
for orig, expected := range numbers {