The problem I am trying to solve is not knowing if "get(key) === undefined" means the key does not exist or there is a key with a value of undefined.
The solution is to disallow inserting undefined. Now there is no ambiguity, if get(key) returns undefined, it _must_ be because the key does not exist. Does this make sense so far? Cheers, Keean. On 8 November 2010 22:08, Jonas Sicking <[email protected]> wrote: > On Mon, Nov 8, 2010 at 1:41 PM, Keean Schupke <[email protected]> wrote: > > What is the use case for storing undefined in an object-store? > > I don't know. But if that's not the problem you were trying to solve, > then what problem were you trying to solve? > > / Jonas >
