isObject.js 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. };