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.
14 lines
372 B
14 lines
372 B
5 months ago
|
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
|