* `ReactInstanceMap` maintains a mapping from a public facing stateful * instance (key) and the internal representation (value). This allows public * methods to accept the user facing instance as an argument and map them back * to internal methods. * * Note that this module is current
(key)
| 2909 | * If this becomes an actual Map, that will break. |
| 2910 | */ |
| 2911 | function get(key) { |
| 2912 | return key._reactInternalFiber; |
| 2913 | } |
| 2914 | function has$1(key) { |
| 2915 | return key._reactInternalFiber !== undefined; |
| 2916 | } |
no test coverage detected