mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
Fix typo
This commit is contained in:
parent
6c5dcb43da
commit
8d7469afcf
1 changed files with 1 additions and 1 deletions
|
@ -1278,7 +1278,7 @@
|
|||
let reStr;
|
||||
if ( arg1 === '{{1}}' || arg1 === '' ) {
|
||||
reStr = '^';
|
||||
} else if ( arg1.startWith('/') && arg1.endsWith('/') ) {
|
||||
} else if ( arg1.startsWith('/') && arg1.endsWith('/') ) {
|
||||
reStr = arg1.slice(1, -1);
|
||||
} else {
|
||||
reStr = arg1.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
||||
|
|
Loading…
Reference in a new issue