Igor 2 年之前
父節點
當前提交
af1e0193ea
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      js/util/utils.js

+ 4 - 0
js/util/utils.js

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