Table.filter() - zuki/Dexie.js GitHub Wiki
Apply javascript filter on all items in the object store
table.filter(filterFunction)
filterFunction: Function | function (value) { return true/false; } |
Returns a Collection instance that will iterate entire object store and calls given filter function for each item when calling any of the executing methods on the Collection, such as toArray(), each(), keys(), uniqueKeys() and sortBy().