rx80

Results 1 comments of rx80

Just a little bit more information: Currently placeholders do get optimized away if _all_ of them can be: ``` let x="test"; console.log(`${x}/${x}`); ``` becomes: ``` console.log("test/test"); ``` So it seems...