UNPKG

252 BJavaScriptView Raw
1"use strict";
2
3const forIn = require('mout/object/forIn');
4
5//note that items are only replaced one time, use rreplaces if needed
6module.exports = function(str, hash) {
7 forIn(hash, function(v, k) {
8 str = str.replace(k, v);
9 });
10 return str;
11};