mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
333755367f
Summary: This declares a few globals that were missing in our `global.js` Flow declaration file: * `process` * `performance` with its current definition. We'll replace it with the new API when we replace `setupPerformance` with `setupWebPerformance`. * `navigator` * `setImmediate` * `clearImmediate` Eventually we should stop including all DOM definitions that Flow provides out of the box and define only what we provide (which is pretty much this file). Changelog: [Internal] Reviewed By: christophpurrer Differential Revision: D42964772 fbshipit-source-id: 6156968e8a9d193e7068d8a5043aa682ad45bba1
23 lines
674 B
JavaScript
23 lines
674 B
JavaScript
/**
|
|
* 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
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const {polyfillObjectProperty} = require('../Utilities/PolyfillFunctions');
|
|
|
|
const navigator = global.navigator;
|
|
if (navigator === undefined) {
|
|
// $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it.
|
|
global.navigator = {product: 'ReactNative'};
|
|
} else {
|
|
// see https://github.com/facebook/react-native/issues/10881
|
|
polyfillObjectProperty(navigator, 'product', () => 'ReactNative');
|
|
}
|