[feat] increase limit more

This commit is contained in:
kwaroran
2023-12-23 17:12:09 +09:00
parent 175202a409
commit d3fed78c0c

View File

@@ -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()