mirror of
https://github.com/retailcrm/mg-transport-core.git
synced 2025-04-04 22:03:33 +03:00
recognize 1(771) as US phone code
This commit is contained in:
parent
e0f94c8beb
commit
278d91ccae
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -125,6 +125,7 @@ func TestFormatNumberForWA(t *testing.T) {
|
|||
"19452381431": "+19452381431",
|
||||
"12793006305": "+12793006305",
|
||||
"15557043340": "+15557043340",
|
||||
"17712015566": "+17712015566",
|
||||
}
|
||||
|
||||
for orig, expected := range numbers {
|
||||
|
|
Loading…
Add table
Reference in a new issue