isFunction.ts 82 B

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