(value)
| 4749 | } |
| 4750 | |
| 4751 | function getSafeValue(value) { |
| 4752 | switch (typeof value) { |
| 4753 | case 'boolean': |
| 4754 | case 'number': |
| 4755 | case 'object': |
| 4756 | case 'string': |
| 4757 | case 'undefined': |
| 4758 | return value; |
| 4759 | default: |
| 4760 | // function, symbol are assigned as empty strings |
| 4761 | return ''; |
| 4762 | } |
| 4763 | } |
| 4764 | |
| 4765 | var eventTypes$1 = { |
| 4766 | change: { |
no outgoing calls
no test coverage detected