I’d expect the following code to log `GET bla`, but it currently doesn’t in
Firefox. That’s because the Firefox implementation of proxies isn’t finished
yet, right?
```js
var proto = new Proxy({}, {
get: function(target, propertyKey, receiver) {
console.log('GET '+propertyKey);
return target[propertyKey];
}
});
var obj = Object.create(proto);
obj.bla;
```
--
Dr. Axel Rauschmayer
[email protected]
rauschma.de
_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss