(value)
| 4529 | } |
| 4530 | |
| 4531 | function getSafeValue(value) { |
| 4532 | switch (typeof value) { |
| 4533 | case 'boolean': |
| 4534 | case 'number': |
| 4535 | case 'object': |
| 4536 | case 'string': |
| 4537 | case 'undefined': |
| 4538 | return value; |
| 4539 | default: |
| 4540 | // function, symbol are assigned as empty strings |
| 4541 | return ''; |
| 4542 | } |
| 4543 | } |
| 4544 | |
| 4545 | var eventTypes$1 = { |
| 4546 | change: { |
no outgoing calls
no test coverage detected