瀏覽代碼

ignore case on regexp

Ivan Asmer 5 年之前
父節點
當前提交
fe1a725981
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      expand.js

+ 1 - 1
expand.js

@@ -83,7 +83,7 @@ function mmExpandSchema(gqlSchema, defaultQueryFields, defaultMutationFields){
                                 if (val && typeof val === 'string' && val.startsWith('/') && val.endsWith('/')){
                                     console.log('regexp found' ,val )
                                     try {
-                                        return new RegExp(val.slice(1, -1))
+                                        return new RegExp(val.slice(1, -1), 'i')
                                     }
                                     catch (e){
                                         return val