blob: ec49bf12877f62026e56899693bfadac77149498 [file] [log] [blame]
'use strict';
/** @type {import('./isObject')} */
module.exports = function isObject(x) {
return !!x && (typeof x === 'function' || typeof x === 'object');
};