/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v16.9.0
packages/react/src/ReactSharedInternals.js
34 строки
1 KB
Sunil Pai
allow nested `act()`s from different renderers (#16039)
03 июл 2019, 00:20
Не верифицирован
03 июл 2019, 00:20
a457e02
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import assign from 'object-assign'; import ReactCurrentDispatcher from './ReactCurrentDispatcher'; import ReactCurrentBatchConfig from './ReactCurrentBatchConfig'; import ReactCurrentOwner from './ReactCurrentOwner'; import ReactDebugCurrentFrame from './ReactDebugCurrentFrame'; import IsSomeRendererActing from './IsSomeRendererActing'; const ReactSharedInternals = { ReactCurrentDispatcher, ReactCurrentBatchConfig, ReactCurrentOwner, IsSomeRendererActing, // Used by renderers to avoid bundling object-assign twice in UMD bundles: assign, }; if (__DEV__) { Object.assign(ReactSharedInternals, { // These should not be included in production. ReactDebugCurrentFrame, // Shim for React DOM 16.0.0 which still destructured (but not used) this. // TODO: remove in React 17.0. ReactComponentTreeHook: {}, }); } export default ReactSharedInternals;