Re: [w3c/IndexedDB] Allow integers in key paths (including array ones) (#209)

It would be reasonably straightforward to accept sequences-of-digits as a key path step, in addition to identifiers. The actual algorithms wouldn't change - if you specified `a.12.c` it would "just work" if we didn't reject that as a valid key path, since `o[12]` and `o['12']` mean the same thing, just as `o.a` and `o['a']` mean the same thing.

I'm interested in feedback from other implementers.

-- 
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/209#issuecomment-309086987

Received on Friday, 16 June 2017 17:33:21 UTC