Skip to content

Instantly share code, notes, and snippets.

@matthewborden
Created April 18, 2014 12:22
Show Gist options
  • Save matthewborden/11041269 to your computer and use it in GitHub Desktop.
Save matthewborden/11041269 to your computer and use it in GitHub Desktop.
var type_of = function(x) {
var type = Object.prototype.toString.apply(x);
return type.slice(type.indexOf(' ') + 1, -1);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment