UNPKG

108 BJavaScriptView Raw
1export default function callIfFunction ( thing ) {
2 return typeof thing === 'function' ? thing() : thing;
3}