Returns the singleton fuzzy search worker pool, creating it if needed.
Shared fuzzy search worker pool instance.
export function getFuzzySearchWorkerPool(): FuzzySearchWorkerPool { fuzzySearchPoolInstance ??= new FuzzySearchWorkerPool(); return fuzzySearchPoolInstance;} Copy
export function getFuzzySearchWorkerPool(): FuzzySearchWorkerPool { fuzzySearchPoolInstance ??= new FuzzySearchWorkerPool(); return fuzzySearchPoolInstance;}
Returns the singleton fuzzy search worker pool, creating it if needed.