Files
2026-03-27 18:36:05 +00:00

9 lines
215 B
JavaScript

function isRefObject(ref) {
return (ref &&
typeof ref === "object" &&
Object.prototype.hasOwnProperty.call(ref, "current"));
}
export { isRefObject };
//# sourceMappingURL=is-ref-object.mjs.map