sub encode { my ($path,$href) = @_; # my @json_arr = JSON::PP->new->encode($href); # return convert_file_to_arr($path,@json_arr); my $json_text = JSON::PP->new->encode($href); return convert_file_to_arr($path,$json_text); }