Files
slash-e/extension/src/helpers/utils.ts
2023-08-08 20:16:14 +08:00

6 lines
150 B
TypeScript

import { isNull, isUndefined } from "lodash-es";
export const isNullorUndefined = (value: any) => {
return isNull(value) || isUndefined(value);
};