med-notes/.pnpm-store/v10/files/61/c2cc4ffcda174cece43c77548d2d32435a887f21e60deff7b13169906a2fa8eb8e61f5e186400516d8796dab4836396d1dc821235e511f5c172a6e433cae92
2025-06-26 03:35:15 +00:00

7 lines
161 B
Plaintext

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