(value)
| 4691 | } |
| 4692 | |
| 4693 | function getSafeValue(value) { |
| 4694 | switch (typeof value) { |
| 4695 | case 'boolean': |
| 4696 | case 'number': |
| 4697 | case 'object': |
| 4698 | case 'string': |
| 4699 | case 'undefined': |
| 4700 | return value; |
| 4701 | default: |
| 4702 | // function, symbol are assigned as empty strings |
| 4703 | return ''; |
| 4704 | } |
| 4705 | } |
| 4706 | |
| 4707 | var eventTypes$1 = { |
| 4708 | change: { |
no outgoing calls
no test coverage detected