minishouyin/node_modules/antd/es/_util/getRenderPropValue.js

6 lines
160 B
JavaScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
export const getRenderPropValue = propValue => {
if (!propValue) {
return null;
}
return typeof propValue === 'function' ? propValue() : propValue;
};