1
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
var template = require('./template')
|
||||
|
||||
/**
|
||||
* 字符串格式化占位符
|
||||
* @param { string } str
|
||||
* @param { object | any[] } obj
|
||||
*/
|
||||
function toFormatString (str, obj) {
|
||||
return template(str, obj,{ tmplRE: /\{([.\w[\]\s]+)\}/g })
|
||||
}
|
||||
|
||||
module.exports = toFormatString
|
||||
Reference in New Issue
Block a user