NAME
Brick::Filters - do something to the input data
SYNOPSIS
use Brick;
DESCRIPTION
- _uppercase( HASHREF )
-
This modifies the input data permanently. It removes the non-digits from the specified value in filter_fields. The value is no longer tainted after this runs. It works on all of the fields.
filter_fields
This filter always succeeds, so it will not generate an validation error.
- _lowercase( HASHREF )
-
This modifies the input data permanently. It removes the non-digits from the specified value in filter_fields. The value is no longer tainted after this runs. It works on all of the fields.
filter_fields
This filter always succeeds, so it will not generate an validation error.
- _remove_non_digits( HASHREF )
-
This modifies the input data permanently. It removes the non-digits from the specified value in filter_fields. The value is no longer tainted after this runs. It works on all of the fields.
filter_fields
This filter always succeeds, so it will not generate an validation error.
- _remove_whitespace( HASHREF )
-
This modifies the input data permanently. It removes the whitespace from the specified value in filter_fields. The value is still tainted after this runs.
filter_fields
This filter always succeeds, so it will not generate an error.
- _remove_extra_fields( HASHREF )
-
This modifies the input data permanently. It removes any fields in the input that are not also in the 'filter_fields' value in HASHREF.
filter_fields
This filter always succeeds, so it will not generate an error.
TO DO
TBA
SEE ALSO
TBA
SOURCE AVAILABILITY
This source is in Github:
https://github.com/briandfoy/brick
AUTHOR
brian d foy, <bdfoy@cpan.org>
COPYRIGHT
Copyright © 2007-2022, brian d foy <bdfoy@cpan.org>. All rights reserved.
You may redistribute this under the terms of the Artistic License 2.0.