Files
GNX-mailEnterprise/frontend/node_modules/es-object-atoms/isObject.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

7 lines
161 B
JavaScript

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