▲ | jollyllama 3 days ago | |||||||
I wonder how long until it gets split off into its own project. For the time being, it could do with a lot more documentation. At least they've got some tests for it! | ||||||||
▲ | CaptainOfCoit 3 days ago | parent | next [-] | |||||||
> I wonder how long until it gets split off into its own project The submission is literally about them moving away from it in favor of Deno, so I think "never" probably gets pretty close. | ||||||||
| ||||||||
▲ | zahlman 3 days ago | parent | prev [-] | |||||||
Aside from the fact that the point of the announcement is that they're dropping it entirely, this "interpreter" is a hack that definitely is nowhere near capable of interpreting arbitrary JS. For example, the only use of `new` it handles is for Date objects, which it does by balancing parens to deduce the arguments for the call, then treating the entire group of arguments as a string and applying regexes to that. |