Skip to content

Instantly share code, notes, and snippets.

@odahcam
Created October 7, 2017 12:26
Show Gist options
  • Save odahcam/5080d6c8c1dcc54ee04f3cf42695cbc3 to your computer and use it in GitHub Desktop.
Save odahcam/5080d6c8c1dcc54ee04f3cf42695cbc3 to your computer and use it in GitHub Desktop.
Checks if a value is a fucntion.
function isFunction(functionToCheck) {
var getType = {};
return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment