Skip to content

Commit 9188d2f

Browse files
committed
chore: update types
1 parent 4d19fac commit 9188d2f

File tree

9 files changed

+205
-230
lines changed

9 files changed

+205
-230
lines changed

packages/0/src/composables/useFilter/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ function defaultFilter (
2828
): boolean {
2929
const queries = Array.isArray(query) ? query.map(q => String(q).toLowerCase()) : [String(query).toLowerCase()]
3030

31-
const match = (value: any, q: string) =>
32-
String(value).toLowerCase().includes(q)
31+
const match = (value: any, q: string) => String(value).toLowerCase().includes(q)
3332

3433
const values =
3534
typeof item === 'object' && item !== null

0 commit comments

Comments
 (0)