UNPKG

500 BJavaScriptView Raw
1/**
2 * Copyright (c) 2014-present, Facebook, Inc.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 *
8 */
9
10'use strict';
11
12// The Symbol used to tag the ReactElement type. If there is no native Symbol
13// nor polyfill, then a plain number is used for performance.
14
15var REACT_ELEMENT_TYPE = typeof Symbol === 'function' && Symbol['for'] && Symbol['for']('react.element') || 0xeac7;
16
17module.exports = REACT_ELEMENT_TYPE;
\No newline at end of file