- From: Joshua Bell <notifications@github.com>
- Date: Wed, 03 Jun 2015 23:11:28 -0700
- To: w3c/IndexedDB <IndexedDB@noreply.github.com>
Received on Thursday, 4 June 2015 06:12:02 UTC
It would be nice if you could pass `indexedDB.cmp` to `sort()`, e.g.: ```js var keys = ['a', 4, 3, 1, 2]; keys.sort(indexedDB.cmp); // [1, 2, 3, 4, 'a'] ? ``` ... but today you get an "illegal invocation", although `cmp()` is a 'pure' function. Adding `[ImplicitThis]` would allow it. --- Reply to this email directly or view it on GitHub: https://github.com/w3c/IndexedDB/issues/24
Received on Thursday, 4 June 2015 06:12:02 UTC