Determine if input is a function.
input
isFunction(() => {}); // trueisFunction({}); // false Copy
isFunction(() => {}); // trueisFunction({}); // false
Determine if
inputis a function.