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