lnked/react-starter

View on GitHub
src/helpers/predicts/is-function.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const isFunction = (fn: any): boolean =>
  !!(fn && typeof fn === 'function')