-
-
Notifications
You must be signed in to change notification settings - Fork 641
Collection.filter()
David Fahlander edited this page Jun 10, 2016
·
3 revisions
collection.filter(filter)
filter: Function | function (value) { return true/false; } |
This Collection instance (this)
This method is identical to Collection.and()
db.friends.orderBy('age').filter(function (friend) {
return friend.name === "Foo";
});
Dexie.js - minimalistic and bullet proof indexedDB library