|
@@ -4,7 +4,9 @@
|
4
|
4
|
|
5
|
5
|
A project committed to make file acess and data transfer easier, efficient for React Native developers.
|
6
|
6
|
|
7
|
|
-> The npm package is inside `src` folder, if you're going to install using github repository do not point to here directly
|
|
7
|
+> If you're going to use github repo as npm dependency please use the [archive repository](https://github.com/wkh237/react-native-fetch-blob-package/releases/tag/v0.9.6) this repository is for development.
|
|
8
|
+
|
|
9
|
+> If you're using this library as Firebase Storage solution, please upgrade to 0.9.6 since XMLHttpRequest polyfill has way better compatibility than previous versions.
|
8
|
10
|
|
9
|
11
|
## Features
|
10
|
12
|
- Transfer data directly from/to storage without BASE64 bridging
|
|
@@ -403,7 +405,7 @@ In `version >= 0.4.2` it is possible to know the upload/download progress. After
|
403
|
405
|
})
|
404
|
406
|
```
|
405
|
407
|
|
406
|
|
-In `0.9.6`, you can specify an optional first argument which contains `count` and `interval` to limit progress event frequency (this will be done in native context in order to reduce RCT bridge overhead). Notice that `count` argument will not work if the server does not provide response content length.
|
|
408
|
+In `0.9.6`, you can specify an object as first argument which contains `count` and `interval`, to the frequency of progress event (this will be done in native context in order to reduce RCT bridge overhead). Notice that `count` argument will not work if the server does not provide response content length.
|
407
|
409
|
|
408
|
410
|
|
409
|
411
|
```js
|