iansan5653 / compress-tag

:abcd: Template literal tag for painless multiline strings in JS.
https://www.npmjs.com/compress-tag
MIT License
14 stars 2 forks source link

Unicode escaped characters are not properly handled #5

Closed iansan5653 closed 5 years ago

iansan5653 commented 5 years ago

Expected behavior:

c`\uD83D\uDE00`
// => "😀"

Actual behavior:

c`\uD83D\uDE00`
// => "\uD83D\uDE00"

Steps to fix:

iansan5653 commented 5 years ago

Once I release unraw I'll be able to fix this. That's waiting on me to finish writing unit tests for that first.