HTML::Util: Short circuit ohne $value. Behebt gleichzeitig eine Warnung.
authorSven Schöling <s.schoeling@linet-services.de>
Mon, 21 Jul 2014 08:08:44 +0000 (10:08 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Mon, 21 Jul 2014 08:08:44 +0000 (10:08 +0200)
SL/HTML/Util.pm

index 72a7a7f..ed5ffde 100644 (file)
@@ -17,6 +17,8 @@ sub strip {
 
   my $value = !ref($class_or_value) && (($class_or_value // '') eq 'SL::HTML::Util') ? $_[1] : $class_or_value;
 
+  return '' unless $value;
+
   if (!%stripper) {
     %stripper = ( parser => HTML::Parser->new );