Chore(deps): Bump the pre-commit-dependencies group across 1 directory with 4 updates (#13137)

This commit is contained in:
dependabot[bot]
2026-07-15 23:52:20 +00:00
committed by GitHub
parent 5428ea5caa
commit 0addb448f5
4 changed files with 149 additions and 12 deletions
+1 -6
View File
@@ -1,12 +1,7 @@
import { normalizeSync } from 'normalize-diacritics'
export type SearchTextValue =
| string
| number
| boolean
| bigint
| null
| undefined
string | number | boolean | bigint | null | undefined
export function normalizeSearchText(value: SearchTextValue): string {
return normalizeSync(String(value ?? '')).toLocaleLowerCase()