jccp_a/vuepress/node_modules/es-object-atoms/isObject.js
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08:00

7 lines
161 B
JavaScript

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