Files
twenty/packages/twenty-server/src/utils/assert.ts
2023-12-10 18:10:54 +01:00

28 lines
600 B
TypeScript

import { HttpException } from '@nestjs/common';
type Assert = (
condition: unknown,
message?: string,
ErrorType?: new (message?: string) => HttpException,
) => asserts condition;
/**
* assert condition and throws a HttpException
*/
export const assert: Assert = (condition, message, ErrorType) => {
if (!condition) {
if (ErrorType) {
if (message) {
throw new ErrorType(message);
}
throw new ErrorType();
}
throw new Error(message);
}
};
export const assertNotNull = <T>(item: T): item is NonNullable<T> =>
item !== null && item !== undefined;