in reply to purge Text::Table empty columns
Replace
if(!$element){ next; } else{ #fill the body $tb->load([$element]); } [download]
with
$tb->load([$element]) if (defined $element and length $element); [download]