1.0.1 • Published 4 years ago
mumbi-module v1.0.1
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);
});