← back to Site Factory

admin/node_modules/es-object-atoms/isObject.js

7 lines

'use strict';

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