UNPKG

@ocubist/error-alchemy

Version:

A powerful Node.js error-handling-framework with custom error types for easy debugging, enhanced error management, strong zod-support and useful quality-of-life-functionality for asserting and validating values.

12 lines (11 loc) 237 B
/** * Selector for severity levels. */ export const severitySelector = { unimportant: "unimportant", minor: "minor", unexpected: "unexpected", critical: "critical", fatal: "fatal", catastrophic: "catastrophic", } as const;