fix(core): update

This commit is contained in:
2019-10-10 18:30:29 +02:00
parent c7324f0240
commit ea26a1d8ef
6 changed files with 569 additions and 422 deletions

View File

@@ -13,7 +13,7 @@ tap.test('should read a file', async tools => {
});
tap.test('should create a valid csv', async () => {
testCsv = await smartcsv.Csv.createCsvFromString(fileString, { headers: true });
testCsv = await smartcsv.Csv.createCsvFromString(fileString, { headers: true, unquote: true });
const result = await testCsv.exportAsObject();
console.log(result);
});