🐛 主程序支持 type: over 类型

This commit is contained in:
muwoo
2023-06-21 16:10:49 +08:00
parent a7926aff60
commit 2eff73f581
8 changed files with 8737 additions and 35139 deletions

View File

@@ -18,6 +18,9 @@ function searchKeyValues(lists, value, strict = false) {
if (item.type === 'regex' && !strict) {
return formatReg(item.match).test(value);
}
if (item.type === 'over') {
return true;
}
return false;
});
}