Sha256: 11a2e8865e48d8508fba39d4a320eda04348dea21fbe4b85986354212631b8ee
Contents?: true
Size: 394 Bytes
Versions: 29
Compression:
Stored size: 394 Bytes
Contents
// Partially taken from: // https://github.com/paulmillr/es6-shim/blob/master/test/string.js 'use strict'; module.exports = function (t, a) { var callSite = []; callSite.raw = ["The total is ", " ($", " with tax)"]; a(t(callSite, '{total}', '{total * 1.01}'), 'The total is {total} (${total * 1.01} with tax)'); callSite.raw = []; a(t(callSite, '{total}', '{total * 1.01}'), ''); };
Version data entries
29 entries across 19 versions & 7 rubygems