remiD45's picture
push chat
8990a66
raw
history blame
161 Bytes
'use strict';
/** @type {import('./isObject')} */
module.exports = function isObject(x) {
return !!x && (typeof x === 'function' || typeof x === 'object');
};