mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
Add empty array, object to set-constant scriptlet
This commit is contained in:
parent
7feef73d8e
commit
ce801b952b
1 changed files with 6 additions and 2 deletions
|
@ -831,6 +831,12 @@
|
|||
cValue = true;
|
||||
} else if ( cValue === 'null' ) {
|
||||
cValue = null;
|
||||
} else if ( cValue === "''" ) {
|
||||
cValue = '';
|
||||
} else if ( cValue === '[]' ) {
|
||||
cValue = [];
|
||||
} else if ( cValue === '{}' ) {
|
||||
cValue = {};
|
||||
} else if ( cValue === 'noopFunc' ) {
|
||||
cValue = function(){};
|
||||
} else if ( cValue === 'trueFunc' ) {
|
||||
|
@ -841,8 +847,6 @@
|
|||
cValue = parseFloat(cValue);
|
||||
if ( isNaN(cValue) ) { return; }
|
||||
if ( Math.abs(cValue) > 0x7FFF ) { return; }
|
||||
} else if ( cValue === "''" ) {
|
||||
cValue = '';
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue