-
-
Save bogdanbiv/c2b8c1ded9dad6cf5f2e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// See http://javascriptweblog.wordpress.com/2011/08/08/fixing-the-javascript-typeof-operator/ | |
(function(global) { | |
// Maintain a map of already-encountered types for super-fast lookups. This | |
// serves the dual purpose of being an object from which to use the function | |
// Object.prototype.toString for retrieving an object's [[Class]]. | |
var types = {}; | |
// Return a useful value based on a passed object's [[Class]] (when possible). | |
Object.toType = function(obj) { | |
var key; | |
// If the object is null, return "Null" (IE <= 8) | |
return obj === null ? "Null" | |
// If the object is undefined, return "Undefined" (IE <= 8) | |
: obj == null ? "Undefined" | |
// If the object is the global object, return "Global" | |
: obj === global ? "Global" | |
// Otherwise return the XXXXX part of the full [object XXXXX] value, from | |
// cache if possible. | |
: types[key = types.toString.call(obj)] || (types[key] = key.slice(8, -1)); | |
}; | |
}(this)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note: correct line 15: from " == null " to " === undefined ", I do not see the point of comparing for null twice.