Files
hoppscotch/packages/hoppscotch-common/src/helpers/functional/error.ts
2022-12-02 03:05:35 -05:00

4 lines
85 B
TypeScript

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