Andrea Giammarchi (2013-07-31T17:53:42.000Z)
domenic at domenicdenicola.com (2013-08-05T20:18:11.811Z)
for what is worth it, this worked quite well in a single realm with no enumerability though: https://gist.github.com/WebReflection/5238782#file-gistfile1-js-L1 ```js // example var sym = new Symbol; var o = {}; o[sym] = 123; console.log(o[sym]); ```