(batchKeys, batchValues, cursor)
| 5572 | } |
| 5573 | |
| 5574 | function onBatch(batchKeys, batchValues, cursor) { |
| 5575 | if (!cursor) { |
| 5576 | return; |
| 5577 | } |
| 5578 | processBatch(batchValues); |
| 5579 | if (results.length < limit) { |
| 5580 | cursor.continue(); |
| 5581 | } |
| 5582 | } |
| 5583 | |
| 5584 | function onGetAll(e) { |
| 5585 | var values = e.target.result; |
no test coverage detected
searching dependent graphs…