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/EscapeJs.pm

14 lines
221 B

package Catalyst::Plugin::NGCP::EscapeJs;
use warnings;
use strict;
use MRO::Compat;
use NGCP::Panel::Utils::Generic qw();
sub escape_js {
my $c = shift;
return NGCP::Panel::Utils::Generic::escape_js(@_);
}
1;