Skip to content

@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

PropertyTypeDescriptionDefined in
caseInsensitive?booleancompare the two strings in case insensitive modesrc/longest-common-substring.ts:10