Skip to content

Commit

Permalink
Removed not needed escape characters
Browse files Browse the repository at this point in the history
  • Loading branch information
rhazn committed Dec 19, 2023
1 parent 55b8fdc commit 8b68399
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8b68399

Please sign in to comment.