-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
I fail to use the Proxy get handler with a ES6 Symbol as property name:
var Reflect = require('harmony-reflect');
var p = new Proxy(Object.create(null), {
get: function(target, property) {
return 'bar';
}
});
console.log( p['foo'] );
console.log( p[Symbol('fooSym')] );
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels