You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Indicates whether comparisons should be case sensitive. */
294
294
isCaseSensitive?: boolean
295
+
/** Indicates whether comparisons should ignore diacritics (accents). */
296
+
ignoreDiacritics?: boolean
295
297
/** Determines how close the match must be to the fuzzy location (specified by `location`). An exact letter match which is `distance` characters away from the fuzzy location would score as a complete mismatch. A `distance` of `0` requires the match be at the exact `location` specified. A distance of `1000` would require a perfect match to be within `800` characters of the `location` to be found using a `threshold` of `0.8`. */
296
298
distance?: number
297
299
/** When true, the matching function will continue to the end of a search pattern even if a perfect match has already been located in the string. */
0 commit comments