Files
hoppscotch/packages/hoppscotch-sh-admin/src/helpers/error.ts
2023-06-16 09:47:00 +05:30

4 lines
85 B
TypeScript

export const throwError = (message: string): never => {
throw new Error(message)
}