(value)
| 5319 | return '' + value; |
| 5320 | } |
| 5321 | function getToStringValue(value) { |
| 5322 | switch (typeof value) { |
| 5323 | case 'boolean': |
| 5324 | case 'number': |
| 5325 | case 'object': |
| 5326 | case 'string': |
| 5327 | case 'undefined': |
| 5328 | return value; |
| 5329 | |
| 5330 | default: |
| 5331 | // function, symbol are assigned as empty strings |
| 5332 | return ''; |
| 5333 | } |
| 5334 | } |
| 5335 | |
| 5336 | var ReactDebugCurrentFrame$2 = null; |
| 5337 | var ReactControlledValuePropTypes = { |
no outgoing calls
no test coverage detected