Help for this page

Select Code to Download


  1. or download this
        if (ref $data->{foo} eq "ARRAY") {
            # list
    ...
        else {
            # single message
        }
    
  2. or download this
        unless (ref $data->{foo} eq "ARRAY") {
            $data->{foo} = [ $data->{foo} ];
        }