208df628ccf6b2c1c152a372dbdb3032aea0d9b5e8a57c8be0e46da9809ba236e494d0a194df465727a84ef327519bc69504afe1cd1fd66844091756922450 261 B

1234567
  1. 'use strict';
  2. var toString = Object.prototype.toString;
  3. module.exports = function (x) {
  4. var prototype;
  5. return toString.call(x) === '[object Object]' && (prototype = Object.getPrototypeOf(x), prototype === null || prototype === Object.getPrototypeOf({}));
  6. };