package HTML::FormFu::Filter::Whitespace; use Moose; extends 'HTML::FormFu::Filter::Regex'; sub match {qr/\s+/} __PACKAGE__->meta->make_immutable; 1; __END__ =head1 NAME HTML::FormFu::Filter::Whitespace - filter stripping all whitespace =head1 DESCRIPTION Removes all whitespace. =head1 AUTHOR Carl Franks, C Based on the original source code of L, by Sebastian Riedel, C =head1 LICENSE This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself. =cut