Remove trailing spaces

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/679
This commit is contained in:
Raymond Hill 2019-07-22 07:32:39 -04:00
parent dd1a4ed36a
commit a89aad0304
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@
}
const prop = chain.slice(0, pos);
let v = owner[prop];
chain = chain.slice(pos + 1);
chain = chain.slice(pos + 1);
if ( v ) {
makeProxy(v, chain);
return;
@ -707,7 +707,7 @@
while ( props.length ) {
var prop = props.pop();
if ( typeof window[prop] === 'function' ) {
window[prop] = noopfn;
window[prop] = noopfn;
} else {
Object.defineProperty(window, prop, {
get: function() { return noopfn; },