Open
Description
There is a small bug in the getIntersection function used for filtering results: the two input arrays don't get sorted correctly if arrays contain numeric values as javascript sort function sorts alphabetically. This will affect searches involving multiple tokens.
I suggest sorting array like this
.sort((a, b) => (a - b));