in reply to purge Text::Table empty columns

Replace

if(!$element){ next; } else{ #fill the body $tb->load([$element]); }

with

$tb->load([$element]) if (defined $element and length $element);