From ee776fd0de1807a51fd75d9183301c256ef77209 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 3 Sep 2015 19:52:55 -0700 Subject: [PATCH] Add IE11 note to `noMapSetTag` definition. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index cd969e213..ad7744771 100644 --- a/lodash.js +++ b/lodash.js @@ -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);