-
-
Notifications
You must be signed in to change notification settings - Fork 675
Table.filter()
David Fahlander edited this page May 8, 2014
·
5 revisions
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().
Dexie.js - minimalistic and bullet proof indexedDB library