Fix Malbolge recognition pattern

This commit is contained in:
Karsten Silkenbäumer 2018-10-24 19:43:49 +02:00
parent 4c39f7ba66
commit 22291042cd

View File

@ -32,7 +32,7 @@ class Malbolge extends Operation {
];
this.patterns = [
{
match: '^(?:[\\x21-\\x7e)?$',
match: '^(?:[\\x21-\\x7e])?$',
flags: 'i',
args: []
}