(value)
| 3980 | } |
| 3981 | |
| 3982 | function getSafeValue(value) { |
| 3983 | switch (typeof value) { |
| 3984 | case 'boolean': |
| 3985 | case 'number': |
| 3986 | case 'object': |
| 3987 | case 'string': |
| 3988 | case 'undefined': |
| 3989 | return value; |
| 3990 | default: |
| 3991 | // function, symbol are assigned as empty strings |
| 3992 | return ''; |
| 3993 | } |
| 3994 | } |
| 3995 | |
| 3996 | var eventTypes$1 = { |
| 3997 | change: { |
no outgoing calls
no test coverage detected