export const isEmptyObj = (obj: object): boolean =>
  Object.keys(obj).length === 0;
