Since Meteor 1.2 ES2015 is supported by default for any .js file in a Meteor project. That's great, but when I try to use the name Proxy like
const p = new Proxy(obj1, obj2);
it throws an undefined name Proxy.
I know ES6 is supported as all other features work (including Promises). So what am I doing wrong?