mirror of
https://github.com/deepseek-ai/awesome-deepseek-integration.git
synced 2025-06-07 18:26:57 -04:00
6 lines
134 B
JavaScript
6 lines
134 B
JavaScript
const is_object = function (obj) {
|
|
return typeof obj === "object" && obj !== null && !Array.isArray(obj);
|
|
};
|
|
|
|
export { is_object };
|