Skip to content

Commit f9e2a83

Browse files
committed
📖 readRemoteFile usage
1 parent e49b967 commit f9e2a83

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,21 @@ const str = `Column 1,Column 2,Column 3,Column 4
3636
const results = readString(str);
3737
```
3838

39+
### 🎀 readRemoteFile
40+
41+
```javascript
42+
import { readRemoteFile } from 'react-native-csv';
43+
44+
readRemoteFile(
45+
url,
46+
{
47+
complete: (results) => {
48+
console.log('Results:', results)
49+
}
50+
}
51+
);
52+
```
53+
3954
## Contributing
4055

4156
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.

0 commit comments

Comments
 (0)