Package Exports
- each-csv
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (each-csv) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Iterate over each comma-separated value in CSV list. Ignore 1-st level parentheses.
npm install each-csv
eachCSV('a,b(2,3),c', function(value){
console.log(value)
});
//> 'a', 'b(2,3)', 'c'