UNPKG

react-native

Version:

A framework for building native apps using React

42 lines (37 loc) 1.71 kB
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ 'use strict'; const {polyfillGlobal} = require('../Utilities/PolyfillFunctions'); /** * Set up XMLHttpRequest. The native XMLHttpRequest in Chrome dev tools is CORS * aware and won't let you fetch anything from the internet. * * You can use this module directly, or just require InitializeCore. */ polyfillGlobal('XMLHttpRequest', () => require('../Network/XMLHttpRequest')); polyfillGlobal('FormData', () => require('../Network/FormData')); polyfillGlobal('fetch', () => require('../Network/fetch').fetch); polyfillGlobal('Headers', () => require('../Network/fetch').Headers); polyfillGlobal('Request', () => require('../Network/fetch').Request); polyfillGlobal('Response', () => require('../Network/fetch').Response); polyfillGlobal('WebSocket', () => require('../WebSocket/WebSocket')); polyfillGlobal('Blob', () => require('../Blob/Blob')); polyfillGlobal('File', () => require('../Blob/File')); polyfillGlobal('FileReader', () => require('../Blob/FileReader')); polyfillGlobal('URL', () => require('../Blob/URL').URL); // flowlint-line untyped-import:off polyfillGlobal('URLSearchParams', () => require('../Blob/URL').URLSearchParams); // flowlint-line untyped-import:off polyfillGlobal( 'AbortController', () => require('abort-controller/dist/abort-controller').AbortController, // flowlint-line untyped-import:off ); polyfillGlobal( 'AbortSignal', () => require('abort-controller/dist/abort-controller').AbortSignal, // flowlint-line untyped-import:off );