mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00: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:
parent
cc5498235c
commit
b8dc685d01
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue