export function isNullUndefined(searchParam: any): boolean {
  return [null, undefined].includes(searchParam);
}
