Skip to content

Commit 4e98840

Browse files
authored
Enable async callback function for CSVDownloader ( #146 )
2 parents 7703ddb + ac8fcd9 commit 4e98840

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ export default function CSVDownloader() {
713713

714714
#### Data as a Function/Callback
715715

716-
`data={}` can be a function that returns a data object.
716+
`data={}` can be a synchronous or asynchronous function that returns a data object.
717717

718718
```javascript
719719
import React from 'react';

src/useCSVDownloader.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ function useCSVDownloaderComponent() {
2828
bom = false,
2929
config = {},
3030
}: Props) => {
31-
const download = () => {
31+
const download = async () => {
3232
const bomCode = bom ? '\ufeff' : '';
3333
let csvContent = null;
3434
let csvURL = null;
3535

3636
if (typeof data === 'function') {
37-
data = data();
37+
data = await data();
3838
}
3939

4040
if (typeof data === 'object') {

0 commit comments

Comments
 (0)