c2cc4ffcda174cece43c77548d2d32435a887f21e60deff7b13169906a2fa8eb8e61f5e186400516d8796dab4836396d1dc821235e511f5c172a6e433cae92 161 B

123456
  1. 'use strict';
  2. /** @type {import('./isObject')} */
  3. module.exports = function isObject(x) {
  4. return !!x && (typeof x === 'function' || typeof x === 'object');
  5. };