Skip to content
Alchemy Logo

assertNever

function assertNever(_x, msg): never;

Defined in: packages/common/src/utils/assertNever.ts:10

Asserts that a value is never.

ParameterTypeDescription

_x

never

The value to assert.

msg

string

The message to throw if the value is not never.

never

Always throws an error.

Was this page helpful?