fix(core): update

This commit is contained in:
2019-05-23 17:28:21 +02:00
parent bdebb3308c
commit 94f2620161
9 changed files with 899 additions and 195 deletions

View File

@ -18,4 +18,12 @@ tap.test('should create a valid csv', async () => {
console.log(result);
});
tap.test('should create a valid csv string', async () => {
const createdCsvString = await smartcsv.Csv.createCsvStringFromArray([
{ wow: 'hi', wow2: 'there' },
{ wow: 'really', wow3: 'yes' }
]);
console.log(createdCsvString);
});
tap.start();