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
26 lines
726 B
JavaScript
26 lines
726 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
|
|
*/
|
|
|
|
if (!global.performance) {
|
|
global.performance = ({}: {now?: () => number});
|
|
}
|
|
|
|
/**
|
|
* Returns a double, measured in milliseconds.
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/Performance/now
|
|
*/
|
|
if (typeof global.performance.now !== 'function') {
|
|
// $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it.
|
|
global.performance.now = function () {
|
|
const performanceNow = global.nativePerformanceNow || Date.now;
|
|
return performanceNow();
|
|
};
|
|
}
|