Fuse
Fuse copied to clipboard
Lightweight fuzzy-search, in JavaScript
Hi Fuse team and community, first of all thank you for this amazing library! It really help all the heavy weight lifting for searching and matching items.. but I seem...
### Describe the bug I was hoping to use fuse.basic because I don't need extended search. But if you try to import fuse.basic like this in a node project: `import...
I'm trying to query a list of items: ``` [{ name: "hello"}, {name: "helo", deprecated: true}, {name: "world"}] ``` I want to show items with the `deprecated: true` property, but...
We call `totalWeight += obj.weight` two times, so the `totalWeight` is double
### Describe the bug When I try to import Fuse with the latest ES Modules version of Typescript 4.7, I have enormous difficulty working with the old namespace syntax Fuse...
### Describe the bug The Typescript typings for Fuse claim that the constructor argument for the initial collection (possibly other arguments elsewhere in the API) takes a `ReadonlyArray`, but the...
Hi version: 6.6.2 Example data: ``` var data = [ { "title": "Old Man's War", "author": "John Scalzi" }, { "title": "The Lock Artist", "author": "Steve" }, { "title": "Artist...
### Description When calling `remove`, Fuse.js returns all removed items. This is not the case with `removeAt` and I found it confusing. ### Describe the solution you'd like Saving the...
### Description If the query provided is using query logical operators, it would be nice that the attribute `key` is also included in the matching object (like it is when...