beb78d1cbdcfd113912b3192a522d7c65c8d46f9a417cda2888ea882c5c45f539c2a06dd983b47f94ba5942b1a0bafdf9f46a8a3987253f47df35e7207f756 246 B

12345678
  1. export default function isObject(input) {
  2. // IE8 will treat undefined and null as object if it wasn't for
  3. // input != null
  4. return (
  5. input != null &&
  6. Object.prototype.toString.call(input) === '[object Object]'
  7. );
  8. }