Files
copilot-toolbox-sdfdsfds/node_modules/antd/es/_util/getRenderPropValue.js
2026-01-16 01:51:36 +00:00

6 lines
160 B
JavaScript

export const getRenderPropValue = propValue => {
if (!propValue) {
return null;
}
return typeof propValue === 'function' ? propValue() : propValue;
};