logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

HTML::Widget::Filter::Callback - Lower Case Filter

Author

       Lyo Kato, "lyo.kato@gmail.com"

Callback

       Argument: \&callback

       Define the callback to be used for filter.

       "cb" is an alias for "callback".

   filter

Description

       Callback Filter.

License

       This library is free software, you can redistribute it and/or modify it under the same terms as Perl
       itself.

perl v5.36.0                                       2023-08-10                HTML::Widget::Filter::Callback(3pm)

Methods

Name

       HTML::Widget::Filter::Callback - Lower Case Filter

Synopsis

           my $f = $widget->filter( 'Callback', 'foo' )->callback(sub {
               my $value=shift;
               $value =~ s/before/after/g;
               return $value;
           });

See Also