(value)
| 4794 | } |
| 4795 | |
| 4796 | function getSafeValue(value) { |
| 4797 | switch (typeof value) { |
| 4798 | case 'boolean': |
| 4799 | case 'number': |
| 4800 | case 'object': |
| 4801 | case 'string': |
| 4802 | case 'undefined': |
| 4803 | return value; |
| 4804 | default: |
| 4805 | // function, symbol are assigned as empty strings |
| 4806 | return ''; |
| 4807 | } |
| 4808 | } |
| 4809 | |
| 4810 | var eventTypes$1 = { |
| 4811 | change: { |
no outgoing calls
no test coverage detected