import getTypeCompare from"./../helper/getTypeCompare.js"/**
* @functionisFunction
* @description - Checks if value is a Function.
* @param { Any } value - Any value
* @return {boolean}
*/constisFunction=(value) =>getTypeCompare(value,'Function')
export { isFunction asdefault }