Create polyfill wrappers for common ES6 features to allow us to use them
D
Dylan Hunt
started a topic
almost 3 years ago
There are some really core ES6 features that we're missing due to Rhino. However, JS is extendable from server-side (I believe?):
I wonder if it would be possible to "ghetto deliver" a few ES6 features via extensions? So it wouldn't ACTUALLY be ES6, but it would wrapped around a polyfill function as if it was ES6.
Like ${} string templating, "let" keyword, and =>'s
Instead of it actually doing that, it would be caught
Dylan Hunt
There are some really core ES6 features that we're missing due to Rhino. However, JS is extendable from server-side (I believe?):
I wonder if it would be possible to "ghetto deliver" a few ES6 features via extensions? So it wouldn't ACTUALLY be ES6, but it would wrapped around a polyfill function as if it was ES6.
Like ${} string templating, "let" keyword, and =>'s
Instead of it actually doing that, it would be caught