Since Meteor 1.2 ES2015 is supported by default for any .js file in the Meteor project. This is great, but when I try to use the proxy name, for example
const p = new Proxy(obj1, obj2);
it gives the proxy server name undefined.
I know that ES6 is supported as all other functions (including Promises) work. So what am I doing wrong?
user2344303
source
share