You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
372 B
13 lines
372 B
var toValueString = require('./toValueString')
|
|
var keys = require('./keys')
|
|
|
|
function helperFormatEscaper (dataMap) {
|
|
var replaceRegexp = new RegExp('(?:' + keys(dataMap).join('|') + ')', 'g')
|
|
return function (str) {
|
|
return toValueString(str).replace(replaceRegexp, function (match) {
|
|
return dataMap[match]
|
|
})
|
|
}
|
|
}
|
|
|
|
module.exports = helperFormatEscaper
|
|
|