1 // Partially taken from:
2 // https://github.com/paulmillr/es6-shim/blob/master/test/string.js
6 module.exports = function (t, a) {
9 callSite.raw = ["The total is ", " ($", " with tax)"];
10 a(t(callSite, '{total}', '{total * 1.01}'),
11 'The total is {total} (${total * 1.01} with tax)');
14 a(t(callSite, '{total}', '{total * 1.01}'), '');