From 22291042cd288f622fcf6c442e825db945188616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karsten=20Silkenb=C3=A4umer?= Date: Wed, 24 Oct 2018 19:43:49 +0200 Subject: [PATCH] Fix Malbolge recognition pattern --- src/core/operations/Malbolge.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/Malbolge.mjs b/src/core/operations/Malbolge.mjs index 06b9f303..0dcef568 100644 --- a/src/core/operations/Malbolge.mjs +++ b/src/core/operations/Malbolge.mjs @@ -32,7 +32,7 @@ class Malbolge extends Operation { ]; this.patterns = [ { - match: '^(?:[\\x21-\\x7e)?$', + match: '^(?:[\\x21-\\x7e])?$', flags: 'i', args: [] }