464a480043
Might already fix #13793
16 lines
485 B
TypeScript
16 lines
485 B
TypeScript
import { isDefined } from 'twenty-shared/utils';
|
|
import { type Nullable } from 'twenty-ui/utilities';
|
|
|
|
// TODO: we should create a custom eslint rule that enforces the use of this function
|
|
// instead of using the `===` operator where a and b are | undefined | null
|
|
export const compareStrictlyExceptForNullAndUndefined = <A, B>(
|
|
valueA: Nullable<A>,
|
|
valueB: Nullable<B>,
|
|
) => {
|
|
if (!isDefined(valueA) && !isDefined(valueB)) {
|
|
return true;
|
|
}
|
|
|
|
return valueA === valueB;
|
|
};
|