string-format-obj
Version:
Replace tokens from a string with values of an object
19 lines (15 loc) • 378 B
JavaScript
;
module.exports = function (template, args) {
if (!args) {
return interpolate.bind(null, template);
}
return interpolate(template, args);
};
function interpolate(template, args) {
if (typeof args === 'undefined') {
args = {};
}
return template.replace(/{([^}]*)}/g, function (match, key) {
return key in args ? args[key] : match;
});
}