1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 01:59:38 +02:00

Identify Map correctly (#1972)

Using Google bigquery I found that your code was comparing the result of `typeof` with a variable named `undefined`.

As typeof returns a string it should compare to a string with the content `'undefined'`
This commit is contained in:
Mathias Rangel Wulff 2016-09-09 15:54:41 +02:00 committed by Raymond Hill
parent cc5498235c
commit b8dc685d01

View File

@ -32,7 +32,7 @@
var showdomButton = uDom.nodeFromId('showdom');
// Don't bother if the browser is not modern enough.
if ( typeof Map === undefined || Map.polyfill || typeof WeakMap === undefined ) {
if ( typeof Map === 'undefined' || Map.polyfill || typeof WeakMap === 'undefined' ) {
showdomButton.classList.add('disabled');
return;
}