Skip to content

isFunction

Function to check the type of value if it's function.

isFunction function

ts
function isFunction(value: unknown): boolean

Checks if value is classified as a function.

Parameters

  • value: unknown The value to check.

Return boolean

true if value is a function, otherwise false.

MIT License, Made with ❤️