const checkNullOrUndefined = (value: any): boolean => {
	return value !== undefined && value !== null;
};

export default checkNullOrUndefined;
