瀏覽代碼

isValidIdentifier: ignore bug function

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

+ 5 - 4
js/util/utils.js

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