Skip to content

Instantly share code, notes, and snippets.

@yamaya
Created April 19, 2012 15:28
Show Gist options
  • Save yamaya/2421724 to your computer and use it in GitHub Desktop.
Save yamaya/2421724 to your computer and use it in GitHub Desktop.
extended "typeof" function
typeof_ = (thing)->
if thing is null
'Null' # Special case
else
Object.prototype.toString.call(thing).match(/^\[object\s(.*)\]$/)[1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment