mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
Use safe Array.from() in no-xhr-if
scriptlet
Related issue: https://github.com/uBlockOrigin/uAssets/issues/20063
This commit is contained in:
parent
70f247d7f5
commit
17d30343c5
1 changed files with 2 additions and 1 deletions
|
@ -47,6 +47,7 @@ function safeSelf() {
|
|||
}
|
||||
const self = globalThis;
|
||||
const safe = {
|
||||
'Array_from': Array.from,
|
||||
'Error': self.Error,
|
||||
'Math_floor': Math.floor,
|
||||
'Math_random': Math.random,
|
||||
|
@ -930,7 +931,7 @@ function matchObjectProperties(propNeedles, ...objs) {
|
|||
}
|
||||
const safe = safeSelf();
|
||||
const haystack = {};
|
||||
const props = [ ...propNeedles.keys() ];
|
||||
const props = safe.Array_from(propNeedles.keys());
|
||||
for ( const obj of objs ) {
|
||||
if ( obj instanceof Object === false ) { continue; }
|
||||
matchObjectProperties.extractProperties(obj, haystack, props);
|
||||
|
|
Loading…
Reference in a new issue