Closed
Description
Tagged templates are fairly easy to implement using ES5 and ES3, you simply turn the following:
fn`Hello ${you}! You're looking ${adjective} today!`
into the following:
fn(["Hello ", "! You're looking ", " today!"], you, adjective);
(sample taken from http://updates.html5rocks.com/2015/01/ES6-Template-Strings)