Initialize FuzzySet with construction arguments
masterWhen creating a new FuzzySet instance, you can pass an options object to configure the matching behavior and initial data.
Arguments:
array: An array of strings to initialize the data structure with.useLevenshtein: Whether or not to use the Levenshtein distance to determine the match scoring. (Default:true)gramSizeLower: The lower bound of gram sizes to use, inclusive. (Default:2)gramSizeUpper: The upper bound of gram sizes to use, inclusive. (Default:3)