Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const csv = require('@fast-csv/format');
const rows = [
['a', 'b'],
['a1', 'b1'],
['a2', 'b2'],
];
csv.writeToBuffer(rows).then(data => console.log(data.toString()));
// Output:
// a,b
// a1,b1
// a2,b2