Skip to content

Instantly share code, notes, and snippets.

@cemremengu
Created June 2, 2018 18:49
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 cemremengu/a86d16f4537a3548480201c93f6fd666 to your computer and use it in GitHub Desktop.
Save cemremengu/a86d16f4537a3548480201c93f6fd666 to your computer and use it in GitHub Desktop.
// true-type-of.js
export const trueTypeOf = input => Object.prototype.toString.call(input)
.replace(/(\[object |\])/ig, '')
.toLowerCase();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment