export function isEmpty()

in src/utils/common.ts [11:13]


export function isEmpty(value: any) {
  return value === undefined || value === null;
}