Also added the caret symbol, for completeness. In this way all ascii symbols are allowed.
This commit is contained in:
parent
a7cb139238
commit
af2d854be5
|
@ -335,7 +335,7 @@
|
|||
// __foo__ is reserved and not a pattern
|
||||
if ( i.match( /^__.*__$/) )
|
||||
continue;
|
||||
var l = i.replace( /([\\.*+?|()\[\]${}])/g, "\\$1" )
|
||||
var l = i.replace( /([\\.*+?^$|()\[\]{}])/g, "\\$1" )
|
||||
.replace( /\n/, "\\n" );
|
||||
patterns.push( i.length === 1 ? l : "(?:" + l + ")" );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue