ore code source is written on ES5 style. Is that out of “it’s so because it was developed while ES6 was not there or not supported enough” ?
Could we have a roadmap for ES6 (or later…) conversion? It would involve a lot of automatic testing to be sure to spot anything that would broke. Not a trivial things but I thik it would be worth.
And what about new feature or other things? For instance, if one would be writing a new filter operator for the core edition, would it be required to write in ES5 or could it be in ES6?
Beyond the stytle, the is the functionality. I see some use of map
which is ES6 and yet I don’t see any use of the let
keyword but only of var
and I don’t see either any use of =>
but only of function
so I am a little bit puzzled about this issue… Where are we really? What are we supposed to do?