line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
408
|
|
|
408
|
|
2700
|
use strict; |
|
408
|
|
|
|
|
846
|
|
|
408
|
|
|
|
|
19084
|
|
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package HTML::FormFu::Constants; |
4
|
|
|
|
|
|
|
# ABSTRACT: FormFU constants EMPTY_STR and SPACE |
5
|
|
|
|
|
|
|
$HTML::FormFu::Constants::VERSION = '2.07'; |
6
|
408
|
|
|
408
|
|
2505
|
use warnings; |
|
408
|
|
|
|
|
801
|
|
|
408
|
|
|
|
|
10180
|
|
7
|
|
|
|
|
|
|
|
8
|
408
|
|
|
408
|
|
204418
|
use Readonly; |
|
408
|
|
|
|
|
1578564
|
|
|
408
|
|
|
|
|
23444
|
|
9
|
408
|
|
|
408
|
|
3216
|
use Exporter qw( import ); |
|
408
|
|
|
|
|
888
|
|
|
408
|
|
|
|
|
32857
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Readonly our $EMPTY_STR => q{}; |
12
|
|
|
|
|
|
|
Readonly our $SPACE => q{ }; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
our @EXPORT_OK = qw( |
15
|
|
|
|
|
|
|
$EMPTY_STR |
16
|
|
|
|
|
|
|
$SPACE |
17
|
|
|
|
|
|
|
); |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
1; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
__END__ |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=pod |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=encoding UTF-8 |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 NAME |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
HTML::FormFu::Constants - FormFU constants EMPTY_STR and SPACE |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 VERSION |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
version 2.07 |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
Carl Franks <cpan@fireartist.com> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
This software is copyright (c) 2018 by Carl Franks. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
44
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=cut |