NAME
Text::CSV::Flatten - Perl extension for transforming hierarchical data (nested arrays/hashes) to comma-separated value (csv) output according to a compact, readable, user-specified pattern.
SYNOPSIS
use Text::CSV::Flatten;
Text::CSV::Flatten->new(
'.<index>.*',
data => [{ a => 1, b => 2 }, { a => 3, b => 4 }],
)->csv();
DESCRIPTION
Some documentation wil come here.
SEE ALSO
Text::CSV
AUTHOR
Timo Kluck, <tkluck@infty.nl>
COPYRIGHT AND LICENSE
Copyright (C) 2016 by Timo Kluck
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.22.1 or, at your option, any later version of Perl 5 you may have available.