UNPKG

@polgubau/utils

Version:

A collection of utility functions for TypeScript

5 lines (3 loc) 356 B
declare function fuzzyFinderInner(string: string, abbreviation: string, lowerString: string, lowerAbbreviation: string, stringIndex: number, abbreviationIndex: number, memoizedResults: Record<string, number>): number; declare function fuzzyFinder(string: string, abbreviation: string, aliases: string[]): number; export { fuzzyFinder, fuzzyFinderInner };