export const isObject = obj => {
  return Object.prototype.toString.call(obj) === '[object Object]';
};
