andy-gg's picture
Upload 2254 files
fed6451 verified
Raw
History Blame Contribute Delete
161 Bytes
'use strict';
/** @type {import('./isObject')} */
module.exports = function isObject(x) {
return !!x && (typeof x === 'function' || typeof x === 'object');
};