Skip to content

Instantly share code, notes, and snippets.

@revazi
Last active August 29, 2015 14:12
Show Gist options
  • Save revazi/92e608aac8b5e93d23f9 to your computer and use it in GitHub Desktop.
Save revazi/92e608aac8b5e93d23f9 to your computer and use it in GitHub Desktop.
Check if object is a function
var isFunction = function(obj) {
var getType = {};
return obj && getType.toString.call(obj) === '[object Function]';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment