export const isObject = (obj: unknown): boolean =>
  null !== obj && "object" === typeof obj;
