function tag(strings) {
console.log(strings.raw[0]);
}
tag`string text line 1 \n string text line 2`;
emits
function tag(_0xe599e4){
console['log'](_0xe599e4['raw'][0x0]);
}
tag'string\x20text\x20line\x201\x20\x0a\x20string\x20text\x20line\x202';
And above code is not a valid JS Tagged Template Litaral code.
emits
And above code is not a valid JS Tagged Template Litaral code.