mirror of
https://github.com/aykhans/slash-e.git
synced 2025-07-06 13:12:36 +00:00
6 lines
150 B
TypeScript
6 lines
150 B
TypeScript
import { isNull, isUndefined } from "lodash-es";
|
|
|
|
export const isNullorUndefined = (value: any) => {
|
|
return isNull(value) || isUndefined(value);
|
|
};
|