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