[feat] increase limit

This commit is contained in:
kwaroran
2023-12-23 17:10:55 +09:00
parent 3e33501954
commit 175202a409

View File

@@ -378,7 +378,7 @@ type matcherArg = {
consistantChar?:boolean consistantChar?:boolean
} }
const matcher = (p1:string,matcherArg:matcherArg) => { const matcher = (p1:string,matcherArg:matcherArg) => {
if(p1.length > 10000){ if(p1.length > 30000){
return '' return ''
} }
const lowerCased = p1.toLocaleLowerCase() const lowerCased = p1.toLocaleLowerCase()