0.1.2 • Published 9 years ago

each-csv v0.1.2

Weekly downloads
5
License
unlicensed
Repository
github
Last release
9 years ago

each-csv Build Status Code Climate

Iterate over comma-separated values in string, ignoring parentheses.

var eachCSV = require('each-csv').

eachCSV('a, b(2,3), c,, d(a())', function(value){
	console.log(value)
});

//'a', 'b(2,3)', 'c', '', 'd(a())'

NPM