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

Function _makeDoNotSendEventError

packages/core/src/client.ts:86–91  ·  view source on GitHub ↗
(message: string)

Source from the content-addressed store, hash-verified

84}
85
86function _makeDoNotSendEventError(message: string): DoNotSendEventError {
87 return {
88 message,
89 [DO_NOT_SEND_EVENT_SYMBOL]: true,
90 };
91}
92
93function _isInternalError(error: unknown): error is InternalError {
94 return !!error && typeof error === 'object' && INTERNAL_ERROR_SYMBOL in error;

Callers 1

_processEventFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected