Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In the React Native, it does not support the `File` class. Instead, it can compose the `FormData` class instance by appending below primitive object type. The primitive type can replace the `File` class instance in the React Native. In such reason, changed `HttpMigrateRouteFetcher` logic a little bit for the React Native `File` supporting issue. ```typescript const form: FormData = new FormData(); form.append("key", { uri: "somewhere-uri-address-of-file-location", name: "file-name", type: "content-media-type", }); ```
- Loading branch information