(value)
| 4650 | } |
| 4651 | |
| 4652 | function getSafeValue(value) { |
| 4653 | switch (typeof value) { |
| 4654 | case 'boolean': |
| 4655 | case 'number': |
| 4656 | case 'object': |
| 4657 | case 'string': |
| 4658 | case 'undefined': |
| 4659 | return value; |
| 4660 | default: |
| 4661 | // function, symbol are assigned as empty strings |
| 4662 | return ''; |
| 4663 | } |
| 4664 | } |
| 4665 | |
| 4666 | var eventTypes$1 = { |
| 4667 | change: { |
no outgoing calls
no test coverage detected