You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/lib/Catalyst/Plugin/NGCP/EscapeSensitiveValue.pm

14 lines
240 B

package Catalyst::Plugin::NGCP::EscapeSensitiveValue;
use warnings;
use strict;
use MRO::Compat;
sub qs {
my $c = shift;
my $str = shift;
return "\x{ab}" . $str . "\x{bb}" if $str;
#return "<<" . $str . ">>" if $str;
}
1;