(propValue)
| 12766 | |
| 12767 | // Returns class name of the object, if any. |
| 12768 | function getClassName(propValue) { |
| 12769 | if (!propValue.constructor || !propValue.constructor.name) { |
| 12770 | return '<<anonymous>>'; |
| 12771 | } |
| 12772 | return propValue.constructor.name; |
| 12773 | } |
| 12774 | |
| 12775 | module.exports = ReactPropTypes; |
| 12776 | },{"114":114,"135":135,"52":52,"72":72}],75:[function(_dereq_,module,exports){ |