Re: [w3c/IndexedDB] Add descending order for getAll() and getAllKeys() (#130)

Just talked with @aliams, and his suggestion was to instead do something like:

```js
objectStore.getAllKeysFromEnd(keyRange, batchSize).onsuccess = ...
objectStore.getAllFromEnd(keyRange, batchSize).onsuccess = ...
```

This would be feature-detectable, although it's maybe not as elegant as an Iterable or generator or some other fancier alternative.


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/130#issuecomment-316777178

Received on Thursday, 20 July 2017 17:39:11 UTC