mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Use globalThis instead of self in scriptlet helper
Related discussion: https://github.com/uBlockOrigin/uBlock-issues/discussions/2768
This commit is contained in:
parent
15e6f7990a
commit
2282215e1c
1 changed files with 1 additions and 0 deletions
|
|
@ -45,6 +45,7 @@ function safeSelf() {
|
|||
if ( scriptletGlobals.has('safeSelf') ) {
|
||||
return scriptletGlobals.get('safeSelf');
|
||||
}
|
||||
const self = globalThis;
|
||||
const safe = {
|
||||
'Error': self.Error,
|
||||
'Object_defineProperty': Object.defineProperty.bind(Object),
|
||||
|
|
|
|||
Loading…
Reference in a new issue