Merge remote-tracking branch 'baidu/master'

This commit is contained in:
liaoxuezhi 2019-11-27 17:05:34 +08:00
commit 3aeeb84ae8
1 changed files with 1 additions and 4 deletions

View File

@ -257,10 +257,7 @@ export const filters: {
return input;
}
fn = value =>
!!~String(value)
.toLowerCase()
.indexOf(arg1);
fn = value => new RegExp(arg1, 'i').test(String(value));
}
keys = keys.split(/\s*,\s*/);