Skip to content

Commit 157b735

Browse files
committed
Initial commit
0 parents  commit 157b735

File tree

252 files changed

+32440
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

252 files changed

+32440
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

cli/apiToCsv.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const getApiResponse = require('../src/getApiResponse');
2+
const convertToCsv = require('../src/convertToCsv');
3+
4+
(async () => {
5+
const API_ENDPOINT = 'https://jsonplaceholder.typicode.com/posts'
6+
7+
const apiData = await getApiResponse(API_ENDPOINT);
8+
9+
await convertToCsv(apiData);
10+
11+
})();

node_modules/@fast-csv/format/CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@fast-csv/format/LICENSE

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@fast-csv/format/README.md

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@fast-csv/format/build/src/CsvFormatterStream.d.ts

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@fast-csv/format/build/src/CsvFormatterStream.js

Lines changed: 63 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@fast-csv/format/build/src/CsvFormatterStream.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@fast-csv/format/build/src/FormatterOptions.d.ts

Lines changed: 39 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@fast-csv/format/build/src/FormatterOptions.js

Lines changed: 38 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)