UNPKG

251 BJavaScriptView Raw
1export var getRenderPropValue = function getRenderPropValue(propValue) {
2 if (!propValue) {
3 return null;
4 }
5
6 var isRenderFunction = typeof propValue === 'function';
7
8 if (isRenderFunction) {
9 return propValue();
10 }
11
12 return propValue;
13};
\No newline at end of file