UNPKG

fuchs-template

Version:
8 lines (6 loc) 192 B
module.exports = function t(/* string */ input, /* object */ values) { for(var key in values) { input = input.replace(new RegExp('{'+key+'}','g'), values[key]); } return input; }