Skip to content

Instantly share code, notes, and snippets.

@donbrae
Last active July 6, 2022 19:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donbrae/ae8d1b734b370113948a6b0b89f19b79 to your computer and use it in GitHub Desktop.
Save donbrae/ae8d1b734b370113948a6b0b89f19b79 to your computer and use it in GitHub Desktop.
Get type of object.
// Source: https://github.com/cferdinandi/reef/commit/20e47e2b6e797e5201da1d8b2e7fb02504a25c6f#diff-26a6046c932328aabcf6b2db468298d6958105007730a04f6e1b942d7d916f07R43-R50
function getType(obj) {
return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment