@technobuddha > library > String > Fuzzy Match
Type Alias: LongestCommonSubstringOptions
ts
type LongestCommonSubstringOptions = {
caseInsensitive?: boolean;
};Defined in: longest-common-substring.ts:8
Options for configuring the longest common substring calculation.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
caseInsensitive? | boolean | compare the two strings in case insensitive mode | src/longest-common-substring.ts:10 |