The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

    Validator::Lazy::Role::Check::Trim

VERSION

Version 0.03

SYNOPSIS

    use Validator::Lazy;
    my $v = Validator::Lazy->new( { trim => { Trim => 'all' } } ); # trim all unwanted spaces from a value

    my( $ok,$data ) = $v->check( trim => '  john   smith  ' );

    say $data->{trim}; # 'john smith'

DESCRIPTION

    An internal Role for Validator::Lazy, part of Validator::Lazy package.

    Provides "Trim" type for Validator::Lazy config.
    Allows to trim value's spaces.
    Do not performs any validations.

METHODS

check

    Called from inside if Validator::Lazy->check process

    Temporary overrides internal Validator::Lazy::check method like this:

    $validator->check( $value, $param );

    $param - scalar or list. can have one or any of values = [ left right inner all ]
    $value - your value to do with.

SUPPORT AND DOCUMENTATION

    After installing, you can find documentation for this module with the perldoc command.

    perldoc Validator::Lazy

    You can also look for information at:

        RT, CPAN's request tracker (report bugs here)
            http://rt.cpan.org/NoAuth/Bugs.html?Dist=Validator-Lazy

        AnnoCPAN, Annotated CPAN documentation
            http://annocpan.org/dist/Validator-Lazy

        CPAN Ratings
            http://cpanratings.perl.org/d/Validator-Lazy

        Search CPAN
            http://search.cpan.org/dist/Validator-Lazy/

AUTHOR

ANTONC <antonc@cpan.org>

LICENSE

    This program is free software; you can redistribute it and/or modify it
    under the terms of the the Artistic License (2.0). You may obtain a
    copy of the full license at:

    L<http://www.perlfoundation.org/artistic_license_2_0>