Add IE11 note to noMapSetTag definition. [ci skip]

This commit is contained in:
John-David Dalton
2015-09-03 19:52:55 -07:00
parent a1f29d8f4a
commit ee776fd0de

View File

@@ -1366,7 +1366,7 @@
var mapCtorString = nativeMap ? fnToString.call(nativeMap) : '',
setCtorString = nativeSet ? fnToString.call(nativeSet) : '';
/** Detect support for map and set `toStringTag` values. */
/** Detect lack of support for map and set `toStringTag` values (IE 11). */
var noMapSetTag = nativeMap && nativeSet &&
!(objToString.call(new Map) == mapTag && objToString.call(new Set) == setTag);