Help for this page
$| = 1; $/ = undef; ... print "Decoding JSON file"; my $js = decode_json $data; # line 24 print "...done\n";
print "Reading JSON file"; open my $fh, '<', '../data/publicextract.charity.json' or die "Unable +to read Charity JSON File"; ... print "...done\n"; $data =~ s/^\357\273\277//; # Strip off BOM