/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/Libraries/Core/setUpGlobals.js
36 строк
1 KB
evanbacon
mark all of react-native as client boundary for React Server Components (#43986)
26 июн 2024, 19:25
26 июн 2024, 19:25
8989c9b
Код
Авторство
О чём код?
/** * 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 client'; 'use strict'; /** * Sets up global variables for React Native. * You can use this module directly, or just require InitializeCore. */ if (global.window === undefined) { // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it. global.window = global; } if (global.self === undefined) { // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it. global.self = global; } // Set up process // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it. global.process = global.process || {}; // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it. global.process.env = global.process.env || {}; if (!global.process.env.NODE_ENV) { // $FlowExpectedError[cannot-write] The global isn't writable anywhere but here, where we define it. global.process.env.NODE_ENV = __DEV__ ? 'development' : 'production'; }