Files
Chatapp/Backend/node_modules/es-object-atoms/isObject.js
T
francesco448 0a448b1250 first commit
2026-03-14 14:59:41 +01:00

7 lines
175 B
JavaScript

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