getRenderPropValue.js 251 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 export var getRenderPropValue = function getRenderPropValue(propValue) { if (!propValue) { return null; } var isRenderFunction = typeof propValue === 'function'; if (isRenderFunction) { return propValue(); } return propValue; };