From 8b68399d461e1470edb66931c129ae0c50021557 Mon Sep 17 00:00:00 2001 From: Philip Heltweg Date: Tue, 19 Dec 2023 11:11:32 +0100 Subject: [PATCH] Removed not needed escape characters --- .../src/lib/types/valuetypes/internal-representation-parsing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/execution/src/lib/types/valuetypes/internal-representation-parsing.ts b/libs/execution/src/lib/types/valuetypes/internal-representation-parsing.ts index 361c6d0a9..9220d51bb 100644 --- a/libs/execution/src/lib/types/valuetypes/internal-representation-parsing.ts +++ b/libs/execution/src/lib/types/valuetypes/internal-representation-parsing.ts @@ -11,7 +11,7 @@ import { ValuetypeVisitor, } from '@jvalue/jayvee-language-server'; -const NUMBER_REGEX = /^[+-]?([0-9]*[,\\.])?[0-9]+([eE][+\\-]?\d+)?$/; +const NUMBER_REGEX = /^[+-]?([0-9]*[,.])?[0-9]+([eE][+-]?\d+)?$/; const TRUE_REGEX = /^true$/i; const FALSE_REGEX = /^false$/i;