@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
16 lines (15 loc) • 384 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.resolveRef = resolveRef;
/**
* If the provided argument is a ref object, returns its `current` value.
* Otherwise, returns the argument itself.
*/
function resolveRef(maybeRef) {
if (maybeRef == null) {
return maybeRef;
}
return 'current' in maybeRef ? maybeRef.current : maybeRef;
}