MCPcopy Index your code
hub / github.com/getsentry/sentry-javascript / normalizeStringifyValue

Function normalizeStringifyValue

packages/react/src/sdk.ts:30–35  ·  view source on GitHub ↗
(value: Exclude<unknown, string | number | boolean | null>)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

isSyntheticEventFunction · 0.90

Tested by

no test coverage detected