Skip to content

Commit 37f7f97

Browse files
authored
Merge pull request wkh237#233 from pedramsaleh/patch-2
commented out header lines
2 parents 60a3ec2 + 61dc8bc commit 37f7f97

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ RNFetchBlob
204204
fileCache : true,
205205
})
206206
.fetch('GET', 'http://www.example.com/file/example.zip', {
207-
some headers ..
207+
//some headers ..
208208
})
209209
.then((res) => {
210210
// the temp file path
@@ -224,7 +224,7 @@ RNFetchBlob
224224
appendExt : 'png'
225225
})
226226
.fetch('GET', 'http://www.example.com/file/example.zip', {
227-
some headers ..
227+
//some headers ..
228228
})
229229
.then((res) => {
230230
// the temp file path with file extension `png`
@@ -387,7 +387,7 @@ In `version >= 0.4.2` it is possible to know the upload/download progress. After
387387

388388
```js
389389
RNFetchBlob.fetch('POST', 'http://www.example.com/upload', {
390-
... some headers,
390+
//... some headers,
391391
'Content-Type' : 'octet-stream'
392392
}, base64DataString)
393393
// listen to upload progress event
@@ -411,7 +411,7 @@ In `0.9.6`, you can specify an object as first argument which contains `count` a
411411

412412
```js
413413
RNFetchBlob.fetch('POST', 'http://www.example.com/upload', {
414-
... some headers,
414+
//... some headers,
415415
'Content-Type' : 'octet-stream'
416416
}, base64DataString)
417417
// listen to upload progress event, emit every 250ms

0 commit comments

Comments
 (0)