(value)
| 6895 | return !!value && typeof value === "object"; |
| 6896 | } |
| 6897 | function isSpecial(value) { |
| 6898 | var stringValue = Object.prototype.toString.call(value); |
| 6899 | return stringValue === "[object RegExp]" || stringValue === "[object Date]" || isReactElement(value); |
| 6900 | } |
| 6901 | // see https://github.com/facebook/react/blob/b5ac963fb791d1298e7f396236383bc955f916c1/src/isomorphic/classic/element/ReactElement.js#L21-L25 |
| 6902 | var canUseSymbol = typeof Symbol === "function" && Symbol.for; |
| 6903 | var REACT_ELEMENT_TYPE = canUseSymbol ? Symbol.for("react.element") : 0xeac7; |
no test coverage detected