flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
13 lines (12 loc) • 336 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.isObject = void 0;
/**
* Check if provided parameter is plain object
* @param item
* @returns boolean
*/
function isObject(item) {
return item !== null && typeof item === 'object' && item.constructor === Object;
}
exports.isObject = isObject;
;