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

use strict;
{ our $VERSION = '0.001'; }
use Exporter qw< import >;
our @EXPORT_OK = qw< local_name >;
sub local_name {
my ($name, $suffix) = @_;
(my $retval = $name . '_' . $suffix) =~ s{\W}{_}gmxs;
return $retval;
}
1;