UNPKG

react-native-fetch-api

Version:

A fetch API polyfill for React Native with text streaming support.

9 lines (6 loc) 261 B
import Headers from "./src/Headers"; import Request from "./src/Request"; import Response from "./src/Response"; import Fetch from "./src/Fetch"; const fetch = (resource, options) => new Fetch(resource, options); export { Headers, Request, Response, fetch };