export const isFunction = (v): boolean => {
  return typeof v === 'function';
};
