Files
hoppscotch/packages/hoppscotch-app/helpers/functional/error.ts
2022-02-17 19:13:28 +05:30

4 lines
85 B
TypeScript

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