1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00

typo in code

This commit is contained in:
gorhill 2015-02-13 19:03:43 -05:00
parent 51a6c8beba
commit 76337c2ac8

View File

@ -1506,7 +1506,7 @@ FilterParser.prototype.parse = function(s) {
}
// regex?
if ( s.charAt(0) === '/' && s.slice(-1) === '/' && s.lenght > 2 ) {
if ( s.charAt(0) === '/' && s.slice(-1) === '/' && s.length > 2 ) {
this.isRegex = true;
this.f = s.slice(1, -1);
return this;