UNPKG

282 BJavaScriptView Raw
1var template = require('./template')
2
3/**
4 * 字符串格式化占位符
5 * @param { string } str
6 * @param { object | any[] } obj
7 */
8function toFormatString (str, obj) {
9 return template(str, obj,{ tmplRE: /\{([.\w[\]\s]+)\}/g })
10}
11
12module.exports = toFormatString