Skip to content

Instantly share code, notes, and snippets.

@fysherman
Created October 26, 2021 15:19
Show Gist options
  • Save fysherman/e9defb60b7da779ff0896ef181334a75 to your computer and use it in GitHub Desktop.
Save fysherman/e9defb60b7da779ff0896ef181334a75 to your computer and use it in GitHub Desktop.
Check if data is a function
function isFunction(obj) {
return obj && {}.toString.call(obj) === '[object Function]';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment