File Coverage

blib/lib/Number/Phone/StubCountry/KY.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::KY;
20 2     2   1060 use base qw(Number::Phone::StubCountry);
  2         9  
  2         205  
21              
22 2     2   17 use strict;
  2         5  
  2         46  
23 2     2   12 use warnings;
  2         7  
  2         68  
24 2     2   14 use utf8;
  2         5  
  2         12  
25             our $VERSION = 1.20230307181421;
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             345(?:
56             2(?:
57             22|
58             3[23]|
59             44|
60             66
61             )|
62             333|
63             444|
64             6(?:
65             23|
66             38|
67             40
68             )|
69             7(?:
70             30|
71             4[35-79]|
72             6[6-9]|
73             77
74             )|
75             8(?:
76             00|
77             1[45]|
78             [48]8
79             )|
80             9(?:
81             14|
82             4[035-9]
83             )
84             )\\d{4}
85             ',
86             'geographic' => '
87             345(?:
88             2(?:
89             22|
90             3[23]|
91             44|
92             66
93             )|
94             333|
95             444|
96             6(?:
97             23|
98             38|
99             40
100             )|
101             7(?:
102             30|
103             4[35-79]|
104             6[6-9]|
105             77
106             )|
107             8(?:
108             00|
109             1[45]|
110             [48]8
111             )|
112             9(?:
113             14|
114             4[035-9]
115             )
116             )\\d{4}
117             ',
118             'mobile' => '
119             345(?:
120             32[1-9]|
121             42[0-4]|
122             5(?:
123             1[67]|
124             2[5-79]|
125             4[6-9]|
126             50|
127             76
128             )|
129             649|
130             82[56]|
131             9(?:
132             1[679]|
133             2[2-9]|
134             3[06-9]|
135             90
136             )
137             )\\d{4}
138             ',
139             'pager' => '345849\\d{4}',
140             'personal_number' => '
141             52(?:
142             3(?:
143             [2-46-9][02-9]\\d|
144             5(?:
145             [02-46-9]\\d|
146             5[0-46-9]
147             )
148             )|
149             4(?:
150             [2-478][02-9]\\d|
151             5(?:
152             [034]\\d|
153             2[024-9]|
154             5[0-46-9]
155             )|
156             6(?:
157             0[1-9]|
158             [2-9]\\d
159             )|
160             9(?:
161             [05-9]\\d|
162             2[0-5]|
163             49
164             )
165             )
166             )\\d{4}|
167             52[34][2-9]1[02-9]\\d{4}|
168             5(?:
169             00|
170             2[125-9]|
171             33|
172             44|
173             66|
174             77|
175             88
176             )[2-9]\\d{6}
177             ',
178             'specialrate' => '(
179             (?:
180             345976|
181             900[2-9]\\d\\d
182             )\\d{4}
183             )',
184             'toll_free' => '
185             8(?:
186             00|
187             33|
188             44|
189             55|
190             66|
191             77|
192             88
193             )[2-9]\\d{6}
194             ',
195             'voip' => ''
196             };
197 2     2   311 use Number::Phone::NANP::Data;
  2         9  
  2         352  
198             sub areaname {
199             # uncoverable subroutine - no data for most NANP countries
200             # uncoverable statement
201 0     0 1 0 Number::Phone::NANP::Data::_areaname('1'.shift()->{number}); }
202              
203             sub new {
204 13     13 1 33 my $class = shift;
205 13         23 my $number = shift;
206 13         85 $number =~ s/(^\+1|\D)//g;
207 13         67 my $self = bless({ country_code => '1', number => $number, formatters => $formatters, validators => $validators, }, $class);
208 13 100       63 return $self->is_valid() ? $self : undef;
209             }
210             1;