|
@@ -10,15 +10,6 @@ This module enables you upload/download binary data in js, see [Examples](#user-
|
10
|
10
|
|
11
|
11
|
The source code is very simple, just an implementation of native HTTP request, supports both Android (uses awesome native library [AsyncHttpClient](https://github.com/AsyncHttpClient/async-http-client])) and IOS.
|
12
|
12
|
|
13
|
|
-## Major Changes
|
14
|
|
-
|
15
|
|
-| Version | |
|
16
|
|
-|---|---|
|
17
|
|
-| 0.3 | Upload/Download octet-stream and form-data |
|
18
|
|
-| 0.4 | Add base-64 encode/decode library and API |
|
19
|
|
-| 0.4.1 | Fixe upload form-data missing file extension problem on Android |
|
20
|
|
-| 0.4.2 | Supports upload/download progress |
|
21
|
|
-
|
22
|
13
|
## Usage
|
23
|
14
|
|
24
|
15
|
* [Installation](#user-content-installation)
|
|
@@ -189,6 +180,14 @@ When `fetch` success, it resolve a `FetchBlobResponse` object as first argument.
|
189
|
180
|
#### text():string
|
190
|
181
|
returns decoded base64 string (done in js context)
|
191
|
182
|
|
|
183
|
+## Major Changes
|
|
184
|
+
|
|
185
|
+| Version | |
|
|
186
|
+|---|---|
|
|
187
|
+| 0.3 | Upload/Download octet-stream and form-data |
|
|
188
|
+| 0.4 | Add base-64 encode/decode library and API |
|
|
189
|
+| 0.4.1 | Fixe upload form-data missing file extension problem on Android |
|
|
190
|
+| 0.4.2 | Supports upload/download progress |
|
192
|
191
|
|
193
|
192
|
### Upcoming Features
|
194
|
193
|
|