From d3fed78c0cf6bcc48a794c77282851cb7d0c9d8b Mon Sep 17 00:00:00 2001 From: kwaroran Date: Sat, 23 Dec 2023 17:12:09 +0900 Subject: [PATCH] [feat] increase limit more --- src/ts/parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ts/parser.ts b/src/ts/parser.ts index d7700e4e..027e319e 100644 --- a/src/ts/parser.ts +++ b/src/ts/parser.ts @@ -378,7 +378,7 @@ type matcherArg = { consistantChar?:boolean } const matcher = (p1:string,matcherArg:matcherArg) => { - if(p1.length > 30000){ + if(p1.length > 100000){ return '' } const lowerCased = p1.toLocaleLowerCase()