Explorar o código

fix: Remove comment from isValidIdentifier

Lucas de Souza %!s(int64=2) %!d(string=hai) anos
pai
achega
6c7838ce80
Modificáronse 1 ficheiros con 1 adicións e 5 borrados
  1. 1 5
      js/util/utils.js

+ 1 - 5
js/util/utils.js

@@ -194,11 +194,7 @@ export function isKeyword (text) {
 
 export function isValidIdentifier (identifier_str) {
   const validRegex = /^[a-zA-Z_][a-zA-Z0-9_]*$/.test(identifier_str);
-  return validRegex;
-  // if (!validRegex) {
-  //   return false;
-  // }
-  // return !isKeyword(identifier_str);
+  return validRegex && !isKeyword(identifier_str)
 }
 
 export function getCodeEditorModeConfig () {