File Coverage

blib/lib/Number/Phone/StubCountry/DM.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::DM;
20 2     2   1051 use base qw(Number::Phone::StubCountry);
  2         7  
  2         227  
21              
22 2     2   14 use strict;
  2         20  
  2         47  
23 2     2   15 use warnings;
  2         6  
  2         54  
24 2     2   20 use utf8;
  2         5  
  2         19  
25             our $VERSION = 1.20230307181419;
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             767(?:
56             2(?:
57             55|
58             66
59             )|
60             4(?:
61             2[01]|
62             4[0-25-9]
63             )|
64             50[0-4]
65             )\\d{4}
66             ',
67             'geographic' => '
68             767(?:
69             2(?:
70             55|
71             66
72             )|
73             4(?:
74             2[01]|
75             4[0-25-9]
76             )|
77             50[0-4]
78             )\\d{4}
79             ',
80             'mobile' => '
81             767(?:
82             2(?:
83             [2-4689]5|
84             7[5-7]
85             )|
86             31[5-7]|
87             61[1-8]|
88             70[1-6]
89             )\\d{4}
90             ',
91             'pager' => '',
92             'personal_number' => '
93             52(?:
94             3(?:
95             [2-46-9][02-9]\\d|
96             5(?:
97             [02-46-9]\\d|
98             5[0-46-9]
99             )
100             )|
101             4(?:
102             [2-478][02-9]\\d|
103             5(?:
104             [034]\\d|
105             2[024-9]|
106             5[0-46-9]
107             )|
108             6(?:
109             0[1-9]|
110             [2-9]\\d
111             )|
112             9(?:
113             [05-9]\\d|
114             2[0-5]|
115             49
116             )
117             )
118             )\\d{4}|
119             52[34][2-9]1[02-9]\\d{4}|
120             5(?:
121             00|
122             2[125-9]|
123             33|
124             44|
125             66|
126             77|
127             88
128             )[2-9]\\d{6}
129             ',
130             'specialrate' => '(900[2-9]\\d{6})',
131             'toll_free' => '
132             8(?:
133             00|
134             33|
135             44|
136             55|
137             66|
138             77|
139             88
140             )[2-9]\\d{6}
141             ',
142             'voip' => ''
143             };
144 2     2   300 use Number::Phone::NANP::Data;
  2         16  
  2         355  
145             sub areaname {
146             # uncoverable subroutine - no data for most NANP countries
147             # uncoverable statement
148 0     0 1 0 Number::Phone::NANP::Data::_areaname('1'.shift()->{number}); }
149              
150             sub new {
151 13     13 1 51 my $class = shift;
152 13         34 my $number = shift;
153 13         87 $number =~ s/(^\+1|\D)//g;
154 13         74 my $self = bless({ country_code => '1', number => $number, formatters => $formatters, validators => $validators, }, $class);
155 13 100       63 return $self->is_valid() ? $self : undef;
156             }
157             1;