Explorar el Código

response typo

Eric hace 6 años
padre
commit
3b0c7ad393
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      polyfill/Fetch.js

+ 2
- 2
polyfill/Fetch.js Ver fichero

@@ -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()