isFunction.ts 81 B

123
  1. export const isFunction = (v): boolean => {
  2. return typeof v === 'function';
  3. };