dashboard/frontend/node_modules/motion-utils/dist/es/is-object.mjs
2025-12-16 08:16:27 +09:00

5 lines
107 B
JavaScript

function isObject(value) {
return typeof value === "object" && value !== null;
}
export { isObject };