json2csvexporter
Advanced tools
Comparing version 0.1.0 to 0.2.0
{ | ||
"name": "json2csvexporter", | ||
"version": "0.1.0", | ||
"version": "0.2.0", | ||
"author": "Filip Danic <filip@spicefactory.com> (danicfilip.com)", | ||
@@ -5,0 +5,0 @@ "main": "lib/CSVExportService.js", |
@@ -24,3 +24,3 @@ # json2csvexporter | ||
```javascript | ||
import CSVExportService from 'utils/csv-exporter/CSVExportService'; | ||
import CSVExportService from 'json2csvexporter'; | ||
... | ||
@@ -50,3 +50,3 @@ const vehiclesJSON = [ | ||
```javascript | ||
import CSVExportService from 'utils/csv-exporter/CSVExportService'; | ||
import CSVExportService from 'json2csvexporter'; | ||
... | ||
@@ -86,3 +86,3 @@ const csvColumnsList = ['id', 'make', 'model', 'year']; | ||
```javascript | ||
import CSVExportService from 'utils/csv-exporter/CSVExportService'; | ||
import CSVExportService from 'json2csvexporter'; | ||
... | ||
@@ -89,0 +89,0 @@ // using the same vehiclesJSON as before... |
15506