(value: Exclude<unknown, string | number | boolean | null>)
| 28 | } |
| 29 | |
| 30 | function normalizeStringifyValue(value: Exclude<unknown, string | number | boolean | null>): string | undefined { |
| 31 | if (isSyntheticEvent(value)) { |
| 32 | return '[SyntheticEvent]'; |
| 33 | } |
| 34 | return browserNormalizeStringifyValue(value); |
| 35 | } |
nothing calls this directly
no test coverage detected