Skip to content

Instantly share code, notes, and snippets.

View DarkAng3L's full-sized avatar
πŸ’­
πŸ”¨

Mihai DarkAng3L

πŸ’­
πŸ”¨
View GitHub Profile
@DarkAng3L
DarkAng3L / try-catch.ts
Last active March 25, 2025 19:40 — forked from t3dotgg/try-catch.ts
Handling try/catch in TypeScript
// Types for the result object with discriminated union
type Success<T> = [null, T];
type Failure<E> = [E, null];
type Result<T, E = Error> = Success<T> | Failure<E>;
export async function tryCatch<T, E extends Error = Error>(
promise: Promise<T>
): Promise<Result<T, E> {
try {
const result = await promise;