rsuite
Version:
A suite of react components
19 lines (18 loc) • 453 B
JavaScript
'use client';
var toFnRef = function toFnRef(ref) {
return !ref || typeof ref === 'function' ? ref : function (value) {
ref.current = value;
};
};
/**
* Merges two React refs into a single ref callback.
*/
export function mergeRefs(refA, refB) {
var a = toFnRef(refA);
var b = toFnRef(refB);
return function (value) {
if (typeof a === 'function') a(value);
if (typeof b === 'function') b(value);
};
}
export default mergeRefs;