From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#!/usr/bin/env perl
use strict;
test_expect(\*DATA);
__END__
--test--
[% USE Filter.Minify.JavaScript.XS -%]
[% FILTER minify_js %]
$(document).ready(
function() {
alert('hello world!');
}
);
[% END %]
--expect--
$(document).ready(function(){alert('hello world!');});