fuzzysort icon indicating copy to clipboard operation
fuzzysort copied to clipboard

Fast SublimeText-like fuzzy search for JavaScript.

Results 36 fuzzysort issues
Sort by recently updated
recently updated
newest added

Hi, Thanks for a great library. I have an array with some objects, they are like: ```var myArr = [{title: "Audi Q3", position: "Stockholm"}, {title: "Volkswagen e-tron", position: "Berlin"}]``` and...

Hi. I've made this modifications for your excellent library to work not only with English (you check character codes to know if it's even alphanumeric). It became a bit slower,...

Is there a way to make the plugin handle accent as char without accent ? For example in your demo on Steam games, if you enter `café ` you have...

In the `algorithmNoTypo()` method this variable is never used. Similar code exists in the `algorithm()` method, where it is used. I noticed this after updating Rollup at , where it...

### Problem When algorithm function returns a reference to a cached object. In this case, if the upstream code holds a reference to it, any consequent invocation of the function...

Added new InstanceOption `typoPenalty` with a default of -20 Updated readme to show the new option. Also refactored how search options inherit from InstanceOptions. This should be easier to read...

TypeError: str.toLowerCase is not a function at Object.prepareLowerCodes (fuzzysort.js:511)

Not an issue but just want say thank you for this amazing project! I thought it would be easy to find a fuzzy search lib but after I tried almost...

Firstly, thank you for a great library. It has made it incredibly easy to implement client side searching of lists of objects. We stumbled upon a use case where it...

I was looking for a solution where if I search for 2 or more words, items with those exact 2 words appear before items without those 2 words. Items with...