mumbi-module
v1.0.1
Published
This packages reads in a csv file and return an array
Readme
Converts a CSV file to an array of objects
Note: The package will return values as strings. Parse the values before using them.
const csvToArray = require("mumbi-module");
csvToArray("./data/adult_sal.csv").then((result) => {
console.log(result);
});