import { textSearch } from "https://deno.land/x/netzo@0.5.63/deps/question/text-util.ts";
Searches with the given search string for items that matches it. It sorts the returned items where the most specific item is first and the least specific is last. If an item does not have any matching qualities it is left out.
Parameters
items: T[]
All items that the search is within.
optional
options: TextSearchOptions<T>Returns
The items that matches the search string in a order of most specific to least specific.