NormalizationSettings.matching constructor

const NormalizationSettings.matching()

The defaults settings to normalize nothing. Can be used to test matching strings.

  • The case is normalized
  • The case type is not normalized
  • The diacritics are removed

Implementation

const NormalizationSettings.matching()
    : normalizeCase = false,
      normalizeCaseType = false,
      removeDiacritics = false;