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;