csv_ya 2.1.1 copy "csv_ya: ^2.1.1" to clipboard
csv_ya: ^2.1.1 copied to clipboard

Yet another CSV parser that you may want.

Yet another CSV parser that you may want.

Features #

  • Tolerant quate escaping.
  • Streaming conversion for very large files.

Usage #

const input = 'a,b,c\n1,2,3';
print(parseCsv(input));
>>> [['a', 'b', 'c'], ['1', '2', '3']]
print(parseCsvAsMap(input));
>>> [{'a': '1', 'b': '2', 'c': '3'}]
0
likes
0
pub points
24%
popularity

Publisher

verified publisherkkazuo.com

Yet another CSV parser that you may want.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on csv_ya