Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldsf committed Mar 23, 2021
0 parents commit 32d607a
Show file tree
Hide file tree
Showing 6 changed files with 11,244 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
/node_modules/
1 change: 1 addition & 0 deletions README.md
@@ -0,0 +1 @@
# csv-utils
15 changes: 15 additions & 0 deletions index.js
@@ -0,0 +1,15 @@
const {
readText,
readCSV,
readCSVHeaders,
writeCSV,
writeText
} = require('./src/csv');

module.exports = {
readText,
readCSV,
readCSVHeaders,
writeCSV,
writeText
}

0 comments on commit 32d607a

Please sign in to comment.