Browse Source

response typo

Eric 6 years ago
parent
commit
3b0c7ad393
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      polyfill/Fetch.js

+ 2
- 2
polyfill/Fetch.js View File

73
               // release blob cache created when sending request
73
               // release blob cache created when sending request
74
               if(blobCache !== null && blobCache instanceof Blob)
74
               if(blobCache !== null && blobCache instanceof Blob)
75
                 blobCache.close()
75
                 blobCache.close()
76
-              return Promise.resolve(new RNFetchBlobFetchRepsonse(resp))
76
+              return Promise.resolve(new RNFetchBlobFetchResponse(resp))
77
             })
77
             })
78
           })
78
           })
79
 
79
 
97
 
97
 
98
 }
98
 }
99
 
99
 
100
-class RNFetchBlobFetchRepsonse {
100
+class RNFetchBlobFetchResponse {
101
 
101
 
102
   constructor(resp:FetchBlobResponse) {
102
   constructor(resp:FetchBlobResponse) {
103
     let info = resp.info()
103
     let info = resp.info()