File Coverage

blib/lib/Number/Phone/StubCountry/VG.pm
Criterion Covered Total %
statement 20 21 100.0
branch 2 2 100.0
condition n/a
subroutine 6 7 100.0
pod 2 2 100.0
total 30 32 100.0


line stmt bran cond sub pod time code
1             # automatically generated file, don't edit
2              
3              
4              
5             # Copyright 2023 David Cantrell, derived from data from libphonenumber
6             # http://code.google.com/p/libphonenumber/
7             #
8             # Licensed under the Apache License, Version 2.0 (the "License");
9             # you may not use this file except in compliance with the License.
10             # You may obtain a copy of the License at
11             #
12             # http://www.apache.org/licenses/LICENSE-2.0
13             #
14             # Unless required by applicable law or agreed to in writing, software
15             # distributed under the License is distributed on an "AS IS" BASIS,
16             # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17             # See the License for the specific language governing permissions and
18             # limitations under the License.
19             package Number::Phone::StubCountry::VG;
20 2     2   1217 use base qw(Number::Phone::StubCountry);
  2         7  
  2         592  
21              
22 2     2   18 use strict;
  2         5  
  2         52  
23 2     2   13 use warnings;
  2         7  
  2         59  
24 2     2   11 use utf8;
  2         6  
  2         17  
25             our $VERSION = 1.20230307181422;
26              
27             my $formatters = [
28             {
29             'format' => '$1-$2',
30             'leading_digits' => '310',
31             'pattern' => '(\\d{3})(\\d{4})'
32             },
33             {
34             'format' => '$1-$2',
35             'intl_format' => 'NA',
36             'leading_digits' => '
37             [24-9]|
38             3(?:
39             [02-9]|
40             1[1-9]
41             )
42             ',
43             'pattern' => '(\\d{3})(\\d{4})'
44             },
45             {
46             'format' => '($1) $2-$3',
47             'intl_format' => '$1-$2-$3',
48             'leading_digits' => '[2-9]',
49             'pattern' => '(\\d{3})(\\d{3})(\\d{4})'
50             }
51             ];
52              
53             my $validators = {
54             'fixed_line' => '
55             284(?:
56             229|
57             4(?:
58             22|
59             9[45]
60             )|
61             774|
62             8(?:
63             52|
64             6[459]
65             )
66             )\\d{4}
67             ',
68             'geographic' => '
69             284(?:
70             229|
71             4(?:
72             22|
73             9[45]
74             )|
75             774|
76             8(?:
77             52|
78             6[459]
79             )
80             )\\d{4}
81             ',
82             'mobile' => '
83             284(?:
84             245|
85             3(?:
86             0[0-3]|
87             4[0-7]|
88             68|
89             9[34]
90             )|
91             4(?:
92             4[0-6]|
93             68|
94             9[69]
95             )|
96             5(?:
97             4[0-7]|
98             68|
99             9[69]
100             )
101             )\\d{4}
102             ',
103             'pager' => '',
104             'personal_number' => '
105             52(?:
106             3(?:
107             [2-46-9][02-9]\\d|
108             5(?:
109             [02-46-9]\\d|
110             5[0-46-9]
111             )
112             )|
113             4(?:
114             [2-478][02-9]\\d|
115             5(?:
116             [034]\\d|
117             2[024-9]|
118             5[0-46-9]
119             )|
120             6(?:
121             0[1-9]|
122             [2-9]\\d
123             )|
124             9(?:
125             [05-9]\\d|
126             2[0-5]|
127             49
128             )
129             )
130             )\\d{4}|
131             52[34][2-9]1[02-9]\\d{4}|
132             5(?:
133             00|
134             2[125-9]|
135             33|
136             44|
137             66|
138             77|
139             88
140             )[2-9]\\d{6}
141             ',
142             'specialrate' => '(900[2-9]\\d{6})',
143             'toll_free' => '
144             8(?:
145             00|
146             33|
147             44|
148             55|
149             66|
150             77|
151             88
152             )[2-9]\\d{6}
153             ',
154             'voip' => ''
155             };
156 2     2   345 use Number::Phone::NANP::Data;
  2         9  
  2         383  
157             sub areaname {
158             # uncoverable subroutine - no data for most NANP countries
159             # uncoverable statement
160 0     0 1 0 Number::Phone::NANP::Data::_areaname('1'.shift()->{number}); }
161              
162             sub new {
163 13     13 1 36 my $class = shift;
164 13         22 my $number = shift;
165 13         85 $number =~ s/(^\+1|\D)//g;
166 13         70 my $self = bless({ country_code => '1', number => $number, formatters => $formatters, validators => $validators, }, $class);
167 13 100       68 return $self->is_valid() ? $self : undef;
168             }
169             1;