(value)
| 4017 | } |
| 4018 | |
| 4019 | function getSafeValue(value) { |
| 4020 | switch (typeof value) { |
| 4021 | case 'boolean': |
| 4022 | case 'number': |
| 4023 | case 'object': |
| 4024 | case 'string': |
| 4025 | case 'undefined': |
| 4026 | return value; |
| 4027 | default: |
| 4028 | // function, symbol are assigned as empty strings |
| 4029 | return ''; |
| 4030 | } |
| 4031 | } |
| 4032 | |
| 4033 | var eventTypes$1 = { |
| 4034 | change: { |
no outgoing calls
no test coverage detected