UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

13 lines (10 loc) 251 B
export var getRenderPropValue = function getRenderPropValue(propValue) { if (!propValue) { return null; } var isRenderFunction = typeof propValue === 'function'; if (isRenderFunction) { return propValue(); } return propValue; };