FaktenZahl/backend/node_modules/es-object-atoms/isObject.js
Marc Wieland 3489892120 First
2025-06-16 16:09:54 +02:00

7 lines
161 B
JavaScript

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