Jake-perl

Results 2 comments of Jake-perl

This behavior is documented and consistent with Perl's taint mode design. This should work; use v5.36; use Taint::Util; my $val = "value"; say "1: ", tainted($val) ? "TAINT" : "not...

From this snippit: if (_eq($from, $to)) { # works for references, too carp("'$from' and '$to' are identical (not copied)"); return 0; } The issue here is that while the code...