Determines if a value is a function.
AnyFn
isFunction(() => {}); // => trueisFunction({}); // => false Copy
isFunction(() => {}); // => trueisFunction({}); // => false
The value to check.
True if the value is a function, false otherwise.
Determines if a value is a function.
See
AnyFn
Example