Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • develop
  • fSearch
  • fuzzySearch
  • fuzzySearchChanges
  • hotFixInFuzzySearch
  • hotFixSeedFunction
  • master
7 results

Target

Select target project
  • roshan.suvarnkar/hdfc-common-utility
1 result
Select Git revision
  • develop
  • fSearch
  • fuzzySearch
  • fuzzySearchChanges
  • hotFixInFuzzySearch
  • hotFixSeedFunction
  • master
7 results
Show changes

Commits on Source 2

......@@ -219,10 +219,6 @@ export async function fuzzySearch<T>(
distinct,
} = args;
if (!searchFields?.length || !searchTerm) {
throw new Error('searchFields and searchTerm are required');
}
if (searchTerm.trim().length < 3) {
throw new Error('Search term must be at least 3 characters long');
}
......