@technobuddha > library > String > Fuzzy Match
Type Alias: LevenshteinDistanceOptions
ts
type LevenshteinDistanceOptions = {
caseInsensitive?: boolean;
};Defined in: levenshtein-distance.ts:8
Options for the levenshteinDistance function
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
caseInsensitive? | boolean | The comparison will ignore case | src/levenshtein-distance.ts:10 |