bun
bun copied to clipboard
String.raw does not work
Version
v0.1.7
Platform
No response
What steps will reproduce the bug?
console.log(String.raw`\?`)
How often does it reproduce? Is there a required condition?
always
What is the expected behavior?
\?
What do you see instead?
?
Additional information
relates to #622
This is a transpiler bug
The template string is being un-escaped since \? normally is the same is ?
This is giving the expected output now:
➜ bun --bun index.ts
\?