/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
v18.1.0
packages/react-native-renderer/src/ReactFabricComponentTree.js
30 строк
748 B
Andrew Clark
[RFC] Codemod invariant -> throw new Error (#22435)
30 сен 2021, 22:01
Не верифицирован
30 сен 2021, 22:01
a724a3b
Код
Авторство
О чём код?
/** * 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. */ function getInstanceFromInstance(instanceHandle) { return instanceHandle; } function getTagFromInstance(inst) { const nativeInstance = inst.stateNode.canonical; if (!nativeInstance._nativeTag) { throw new Error('All native instances should have a tag.'); } return nativeInstance; } export { getInstanceFromInstance as getClosestInstanceFromNode, getInstanceFromInstance as getInstanceFromNode, getTagFromInstance as getNodeFromInstance, }; export function getFiberCurrentPropsFromNode(inst) { return inst.canonical.currentProps; }