Files
Webklar.com/node_modules/framer-motion/dist/es/utils/is-ref-object.mjs
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

8 lines
172 B
JavaScript

function isRefObject(ref) {
return (ref &&
typeof ref === "object" &&
Object.prototype.hasOwnProperty.call(ref, "current"));
}
export { isRefObject };