-
-
Notifications
You must be signed in to change notification settings - Fork 646
Collection.each()
Christopher Hunt edited this page Nov 25, 2016
·
5 revisions
collection.each(callback)
callback: Function | function (item, cursor) { } |
item: Object | Found object |
cursor: IDBCursor
|
The cursor of the object being iterated. |
When iteration finishes, the returned Promise will resolve with undefined
, calling any Promise.then() callback.
If the operation fails, the returned Promise will reject, calling any Promise.catch() callback.
Dexie.js - minimalistic and bullet proof indexedDB library