Files
2025-11-04 07:36:02 +00:00

6 lines
134 B
JavaScript

const is_object = function (obj) {
return typeof obj === "object" && obj !== null && !Array.isArray(obj);
};
export { is_object };