(value)
| 3889 | } |
| 3890 | |
| 3891 | function getSafeValue(value) { |
| 3892 | switch (typeof value) { |
| 3893 | case 'boolean': |
| 3894 | case 'number': |
| 3895 | case 'object': |
| 3896 | case 'string': |
| 3897 | case 'undefined': |
| 3898 | return value; |
| 3899 | default: |
| 3900 | // function, symbol are assigned as empty strings |
| 3901 | return ''; |
| 3902 | } |
| 3903 | } |
| 3904 | |
| 3905 | var eventTypes$1 = { |
| 3906 | change: { |
no outgoing calls
no test coverage detected