mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 07:17:50 +00:00
56 lines
1.5 KiB
JavaScript
56 lines
1.5 KiB
JavaScript
var Map = require('./_Map'),
|
|
Set = require('./_Set');
|
|
|
|
/** `Object#toString` result references. */
|
|
var mapTag = '[object Map]',
|
|
objectTag = '[object Object]',
|
|
setTag = '[object Set]';
|
|
|
|
/** Used for built-in method references. */
|
|
var objectProto = global.Object.prototype;
|
|
|
|
/** Used to resolve the decompiled source of functions. */
|
|
var funcToString = global.Function.prototype.toString;
|
|
|
|
/**
|
|
* Used to resolve the [`toStringTag`](http://ecma-international.org/ecma-262/6.0/#sec-object.prototype.tostring)
|
|
* of values.
|
|
*/
|
|
var objectToString = objectProto.toString;
|
|
|
|
/** Used to detect maps and sets. */
|
|
var mapCtorString = Map ? funcToString.call(Map) : '',
|
|
setCtorString = Set ? funcToString.call(Set) : '';
|
|
|
|
/**
|
|
* Gets the `toStringTag` of `value`.
|
|
*
|
|
* @private
|
|
* @param {*} value The value to query.
|
|
* @returns {string} Returns the `toStringTag`.
|
|
*/
|
|
function getTag(value) {
|
|
return objectToString.call(value);
|
|
}
|
|
|
|
// Fallback for IE 11 providing `toStringTag` values for maps and sets.
|
|
if ((Map && getTag(new Map) != mapTag) || (Set && getTag(new Set) != setTag)) {
|
|
getTag = function(value) {
|
|
var result = objectToString.call(value),
|
|
Ctor = result == objectTag ? value.constructor : null,
|
|
ctorString = typeof Ctor == 'function' ? funcToString.call(Ctor) : '';
|
|
|
|
if (ctorString) {
|
|
if (ctorString == mapCtorString) {
|
|
return mapTag;
|
|
}
|
|
if (ctorString == setCtorString) {
|
|
return setTag;
|
|
}
|
|
}
|
|
return result;
|
|
};
|
|
}
|
|
|
|
module.exports = getTag;
|