mirror of
https://github.com/deepseek-ai/awesome-deepseek-integration.git
synced 2025-04-05 11:24:03 +00:00
5 lines
134 B
JavaScript
5 lines
134 B
JavaScript
const is_object = function (obj) {
|
|
return typeof obj === "object" && obj !== null && !Array.isArray(obj);
|
|
};
|
|
|
|
export { is_object };
|