isFunction.js 88 B

12
  1. const isFunction = (value) => (typeof value === "function");
  2. export default isFunction;