Files
react/node_modules/motion-utils/dist/es/is-object.mjs
2025-12-28 20:50:08 +00:00

6 lines
107 B
JavaScript

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