| HTML-Widget documentation | Contained in the HTML-Widget distribution. |
HTML::Widget::Filter::LowerCase - Lower Case Filter
my $f = $widget->filter( 'LowerCase', 'foo' );
Lower Case Filter.
Lyo Kato, lyo.kato@gmail.com
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.
| HTML-Widget documentation | Contained in the HTML-Widget distribution. |
package HTML::Widget::Filter::LowerCase; use warnings; use strict; use base 'HTML::Widget::Filter';
sub filter { my ( $self, $value ) = @_; return lc $value; }
1;