File Coverage

blib/lib/String/Strip.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package String::Strip;
2              
3 1     1   657 use strict;
  1         2  
  1         33  
4 1     1   5 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
  1         2  
  1         146  
5              
6             require Exporter;
7             require DynaLoader;
8             require AutoLoader;
9              
10             @ISA = qw(Exporter DynaLoader);
11              
12             @EXPORT = qw(
13             StripLSpace
14             StripTSpace
15             StripLTSpace
16             StripSpace
17             );
18             $VERSION = '1.02';
19              
20             bootstrap String::Strip $VERSION;
21              
22             1;
23             __END__