strictures doesn't want us to.
+ - Fix concatenating undef to HTML::String values.
+
1.000003 - 2013-09-12
- Fix concatenating strings that evaluate to false in a boolean context.
sub _hsv_dot {
my ($self, $str, $prefix) = @_;
- return $self unless length $str;
+ return $self unless defined $str && length $str;
my @parts = @{$self->{parts}};