mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
cea798c57b
Reviewed By: rubennorte Differential Revision: D7498658 fbshipit-source-id: 6825c3010ce13c56f05284448ad9961fe058d7ea
22 lines
438 B
JavaScript
22 lines
438 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @providesModule fetch
|
|
*
|
|
*/
|
|
|
|
/* globals Headers, Request, Response */
|
|
|
|
'use strict';
|
|
|
|
const whatwg = require('whatwg-fetch');
|
|
|
|
if (whatwg && whatwg.fetch) {
|
|
module.exports = whatwg;
|
|
} else {
|
|
module.exports = {fetch, Headers, Request, Response};
|
|
}
|