(value)
| 4907 | } |
| 4908 | |
| 4909 | function getSafeValue(value) { |
| 4910 | switch (typeof value) { |
| 4911 | case 'boolean': |
| 4912 | case 'number': |
| 4913 | case 'object': |
| 4914 | case 'string': |
| 4915 | case 'undefined': |
| 4916 | return value; |
| 4917 | default: |
| 4918 | // function, symbol are assigned as empty strings |
| 4919 | return ''; |
| 4920 | } |
| 4921 | } |
| 4922 | |
| 4923 | var eventTypes$1 = { |
| 4924 | change: { |
no outgoing calls
no test coverage detected