Enbld
view release on metacpan or search on metacpan
lib/Enbld.pm view on Meta::CPAN
sub from($) {
my $from = shift;
if ( ref( $from ) ) {
_err( "Function 'from' requsres string type parameter." );
}
$rcfile_condition->{from} = $from;
}
sub to($) {
my $to = shift;
if ( ref( $to ) ) {
_err( "Function 'to' requsres string type parameter." );
}
if ( $to =~ /\s/ ) {
_err( "Function 'to' must not contain space character." );
}
( run in 1.776 second using v1.01-cache-2.11-cpan-5b529ec07f3 )