);
=head2 Converting CSV to JSON
use Text::CSV_XS qw( csv );
use JSON; # or Cpanel::JSON::XS for better performance
# AoA (no header interpretation)
say encode_json (csv (in => "file.csv"));
# AoH (convert to structures)
say encode_json (csv (in => "file.csv", bom => 1));
Yes, it is that simple.
=head2 The examples folder
For more extended examples, see the F<examples/> C<1>. sub-dire