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