JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q27949F
  • License unlicensed

Iterate over each comma-separated value ignoring parentheses

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

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