recognize 1(771) as US phone code

This commit is contained in:
Pavel 2025-02-25 09:18:03 +03:00
parent e0f94c8beb
commit 278d91ccae
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 {